diff --git a/.source_state b/.source_state index 2564ecf..2d12976 100644 --- a/.source_state +++ b/.source_state @@ -1 +1 @@ -1a930ffc3764f8ee50c52c744e9a9258 +e1f98a39611eed5aee06e98abb66ef12 diff --git a/SD/1.1_R语言介绍/_demo.qmd b/SD/1.1_R语言介绍/_demo.qmd index 14b83f8..68b00ab 100644 --- a/SD/1.1_R语言介绍/_demo.qmd +++ b/SD/1.1_R语言介绍/_demo.qmd @@ -86,6 +86,53 @@ substr("Monday", 1, 3) ``` +# tidy + + +```{r} +require(readxl) + +aqdf <-readxl::read_xlsx("../../data/airquality.xlsx", sheet = "metadf") + +# install.packages("skimr") + +aqdf |> + skimr::skim() + +# base + +# tidyverse + +aqdf |> + dplyr::group_by(Area) |> + dplyr::summarize( + n = n(), + lon.mean = mean(lon, na.rm = TRUE), + lon.sd = sd(lat, na.rm = TRUE) + ) |> + dplyr::filter(Area %in% c("北京市", "天津市", "上海市", "重庆市")) |> + ggplot(aes(x = n, y = lon.mean)) + + geom_point() + + geom_line() + + geom_errorbar( + aes(ymin = lon.mean - lon.sd, + ymax = lon.mean + lon.sd) + ) + + + + + + + +readxl::read_xlsx("./airquality.xlsx") + +flights|> + filter(dest=="IAH")|> + group_by(year,month,day)|>summarize(n=n(), +delay=mean(arr_delay,na.rm=TRUE))|>filter(n>10) + +``` diff --git a/SD/1.9_课后作业6/data.csv b/SD/1.9_课后作业6/data.csv new file mode 100644 index 0000000..3f48e9d --- /dev/null +++ b/SD/1.9_课后作业6/data.csv @@ -0,0 +1,21 @@ +name,age,score +Alice,25,85 +Bob,30,92 +Charlie,28,89 +David,22,95 +Eva,35,87 +Frank,27,91 +Grace,29,88 +Helen,26,93 +Ivan,31,86 +Jack,24,94 +Kelly,32,89 +Lily,28,90 +Mike,33,85 +Nancy,27,92 +Olivia,34,88 +Peter,29,93 +Queen,25,89 +Ryan,30,94 +Samantha,26,91 +Tom,31,87 diff --git a/SD/3.9_课后作业8/.RData b/SD/3.9_课后作业8/.RData new file mode 100644 index 0000000..6f7dafd Binary files /dev/null and b/SD/3.9_课后作业8/.RData differ diff --git a/SD/3.9_课后作业8/_extensions b/SD/3.9_课后作业8/_extensions new file mode 120000 index 0000000..74119e3 --- /dev/null +++ b/SD/3.9_课后作业8/_extensions @@ -0,0 +1 @@ +../../_extensions \ No newline at end of file diff --git a/SD/3.9_课后作业8/airqualitydf.RDS b/SD/3.9_课后作业8/airqualitydf.RDS new file mode 100644 index 0000000..5d6d693 Binary files /dev/null and b/SD/3.9_课后作业8/airqualitydf.RDS differ diff --git a/SD/3.9_课后作业8/airqualitymedianoutrow5.pdf b/SD/3.9_课后作业8/airqualitymedianoutrow5.pdf new file mode 100644 index 0000000..face837 Binary files /dev/null and b/SD/3.9_课后作业8/airqualitymedianoutrow5.pdf differ diff --git a/SD/3.9_课后作业8/freq.pdf b/SD/3.9_课后作业8/freq.pdf new file mode 100644 index 0000000..446ee8c Binary files /dev/null and b/SD/3.9_课后作业8/freq.pdf differ diff --git a/SD/3.9_课后作业8/index.qmd b/SD/3.9_课后作业8/index.qmd new file mode 100644 index 0000000..ffd30e0 --- /dev/null +++ b/SD/3.9_课后作业8/index.qmd @@ -0,0 +1,66 @@ +--- +title: "课后作业8" +subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution +author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 +date: today +lang: zh +resources: + - "*.pdf" + - "*.sas" +format: + revealjs: + theme: dark + slide-number: true + chalkboard: + buttons: true + preview-links: auto + lang: zh + toc: true + toc-depth: 1 + toc-title: 大纲 + logo: ./_extensions/inst/img/ucaslogo.png + css: ./_extensions/inst/css/revealjs.css + pointer: + key: "p" + color: "#32cd32" + pointerSize: 18 +revealjs-plugins: + - pointer +filters: + - d2 +--- + +```{r} +#| include: false +#| cache: false +lang <- "cn" +require(tidyverse) +require(learnr) +``` + +## 第8次课后作业 + +1. 根据`airqualitydf.xlsx`,按采样点统计白天(8:00-20:00)与夜晚(20:00-8:00)中空气质量指数(AQI)中位数,按城市统计低于所有采样点AQI30%分位值的采样点占比,列出上述占比最高的10个城市(不考虑采样点数低于5个的城市)。 +2. 按照不同城市分组,统计白天与夜晚AQI中位数是否具有显著差异。 + +作业模板:[第8次课后作业_模板.qmd](https://git.drwater.net/course/RWEP/raw/branch/main/SD/20240328_9_课后作业/第8次课后作业_模板.qmd) + +## 示例代码 + +### 基于R的示例结果 + +- [第8次课后作业R示例代码结果](./第8次课后作业_模板.html) + +### 基于SAS的示例结果 + +- [第8次课后作业SAS示例代码](./第8次课后作业_模板.sas) +- [第8次课后作业SAS示例结果1](./median.pdf) +- [第8次课后作业SAS示例结果2](./freq.pdf) +- [第8次课后作业SAS示例结果3](./airqualitymedianoutrow5.pdf) +- [第8次课后作业SAS示例结果4](./npar1wayConover.pdf) + +## 欢迎讨论!{.center} + + +`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drc.drwater.net/course/public/RWEP/PUB/SD/")` + diff --git a/SD/3.9_课后作业8/median.pdf b/SD/3.9_课后作业8/median.pdf new file mode 100644 index 0000000..eafe394 Binary files /dev/null and b/SD/3.9_课后作业8/median.pdf differ diff --git a/SD/3.9_课后作业8/metadf.RDS b/SD/3.9_课后作业8/metadf.RDS new file mode 100644 index 0000000..454bc5f Binary files /dev/null and b/SD/3.9_课后作业8/metadf.RDS differ diff --git a/SD/3.9_课后作业8/npar1wayConover.pdf b/SD/3.9_课后作业8/npar1wayConover.pdf new file mode 100644 index 0000000..2cc2998 Binary files /dev/null and b/SD/3.9_课后作业8/npar1wayConover.pdf differ diff --git a/SD/3.9_课后作业8/testdf.RDS b/SD/3.9_课后作业8/testdf.RDS new file mode 100644 index 0000000..a21548f Binary files /dev/null and b/SD/3.9_课后作业8/testdf.RDS differ diff --git a/SD/3.9_课后作业8/第8次课后作业_模板.qmd b/SD/3.9_课后作业8/第8次课后作业_模板.qmd new file mode 100644 index 0000000..a6b54d6 --- /dev/null +++ b/SD/3.9_课后作业8/第8次课后作业_模板.qmd @@ -0,0 +1,152 @@ +--- +title: 课后作业8 +author: 姓名 +format: html +--- + +# 数据 + +下载airquality.xlsx,并读取数据。 + +```{r} +#| message: false +#| warning: false +# 下载至临时文件 +if (FALSE) { + tmpxlsxpath <- file.path(tempdir(), "airquality.xlsx") + download.file("https://git.drwater.net/course/RWEP/raw/branch/PUB/data/airquality.xlsx", + destfile = tmpxlsxpath) + airqualitydf <- readxl::read_xlsx(tmpxlsxpath, sheet = 2) + metadf <- readxl::read_xlsx(tmpxlsxpath, sheet = 1) + saveRDS(airqualitydf, "./airqualitydf.RDS") + saveRDS(metadf, "./metadf.RDS") +} +airqualitydf <- readRDS("./airqualitydf.RDS") +metadf <- readRDS("./metadf.RDS") +``` + +# 描述统计 + +根据`airqualitydf.xlsx`,按采样点统计白天(8:00-20:00)与夜晚(20:00-8:00)中空气质量指数(AQI)中位数,按城市统计低于所有采样点AQI30%分位值的采样点占比,列出上述占比最高的10个城市(不考虑采样点数低于5个的城市)。 + +```{r} +#| message: false +#| warning: false +require(tidyverse) +airqualitydf |> + select(datetime, site, AQI) |> + filter(!is.na(AQI)) |> + group_by(site) |> + summarize(AQI.median = median(AQI, na.rm = TRUE)) |> + left_join(metadf |> select(site, city = Area)) |> + group_by(city) |> + filter(n() > 5) |> + summarize(p = sum(AQI.median < quantile(airqualitydf$AQI, probs = 0.5, na.rm = TRUE)) / n()) |> + top_n(10, p) + + +airqualitydf |> + select(datetime, site, AQI) |> + filter(!is.na(AQI)) |> + group_by(site) |> + summarize(AQI.median = median(AQI, na.rm = TRUE)) + +airqualitydf |> + select(datetime, site, AQI) |> + filter(!is.na(AQI)) |> + left_join(metadf |> select(site, city = Area)) |> + group_by(city) |> + filter(length(unique(site)) >= 5) |> + summarize(p = sum(AQI < quantile(airqualitydf$AQI, probs = 0.2, + na.rm = TRUE)) / n()) |> + slice_max(p, n = 10) |> +knitr::kable() + + +``` + + +# 统计检验 + +按照不同城市分组,统计白天与夜晚AQI中位数是否具有显著差异。 + +```{r} +#| message: false +#| warning: false + +if (FALSE) { + require(infer) + require(tidyverse) + testdf <- airqualitydf |> + select(datetime, site, AQI) |> + filter(!is.na(AQI)) |> + left_join(metadf |> select(site, city = Area)) |> + group_by(city) |> + filter(length(unique(site)) >= 5) |> + mutate(dayornight = factor(ifelse(between(hour(datetime), 8, 20), "day", "night"), + levels = c("day", "night")) + ) |> + group_by(city) |> + nest(citydf = -city) |> + mutate(median_diff = purrr::map_dbl(citydf, ~ + .x |> + specify(AQI ~ dayornight) |> + calculate(stat = "diff in medians", order = c("day", "night")) |> + pull(stat) + )) |> + ungroup() |> + # slice_sample(n = 12) |> + mutate(null_dist = purrr::map(citydf, ~ + .x |> + specify(AQI ~ dayornight) |> + hypothesize(null = "independence") |> + generate(reps = 1000, type = "permute") |> + calculate(stat = "diff in medians", order = c("day", "night")) + )) |> + mutate(p_value = purrr::map2_dbl(null_dist, median_diff, + ~ get_p_value(.x, obs_stat = .y, direction = "both") |> + pull(p_value) + )) |> + mutate(sigdiff = ifelse(p_value < 0.01, "显著差异", "无显著差异")) |> + mutate(fig = purrr::pmap(list(null_dist, median_diff, city, sigdiff), + ~ visualize(..1) + + shade_p_value(obs_stat = ..2, direction = "both") + + ggtitle(paste0(..3, ":", ..4)) + + theme_sci(2, 2) + )) |> + arrange(p_value) + saveRDS(testdf, "./testdf.RDS") +} + +if (FALSE) { + +lang <- "cn" +require(dwfun) +require(rmdify) +require(drwateR) +dwfun::init() +rmdify::rmd_init() + +testdf <- readRDS("./testdf.RDS") +require(tidyverse) +testdf |> + select(city, median_diff, p_value, sigdiff) |> + knitr::kable() +testdf |> + mutate(grp = (row_number() - 1)%/% 12) |> + group_by(grp) |> + nest(grpdf = -grp) |> + ungroup() |> +# slice(1) |> + mutate(gp = purrr::map(grpdf, + ~(.x |> + pull(fig)) |> + patchwork::wrap_plots(ncol = 3) + + dwfun::theme_sci(5, 7))) |> + pull(gp) + + +} + +``` + diff --git a/SD/3.9_课后作业8/第8次课后作业_模板.sas b/SD/3.9_课后作业8/第8次课后作业_模板.sas new file mode 100644 index 0000000..9cdaf41 --- /dev/null +++ b/SD/3.9_课后作业8/第8次课后作业_模板.sas @@ -0,0 +1,289 @@ +options ls=256 ps=32767 nodate validmemname=extend validvarname=any; + +title 'The SAS System'; + +%macro print(d); + proc print data=&d;run; + %mend; +%macro printobs(d,obs); + proc print data=&d (obs=&obs);run; + %mend; +%macro printfirstobsobs(d,firstobs,obs); + proc print data=&d (firstobs=&firstobs obs=&obs);run; + %mend; +%macro contents(d); + proc contents data=&d varnum;run; + %mend; +%macro contentsshort(d); + proc contents data=&d varnum short;run; + %mend; +%macro save_dataset(d); + data "d:&d"; + set &d; + run; + %mend; +%macro load_dataset(d); + data &d; + set "d:&d"; + run; + %mend; +%macro kill; + PROC DATASETS LIB=work KILL;RUN;quit; + %mend; +proc template; + list styles; +run; + + + +%kill; +PROC IMPORT OUT=WORK.raw_metadf + DATAFILE="d:airquality.xlsx" + DBMS=EXCEL REPLACE; + RANGE="metadf$"; + GETNAMES=YES; + MIXED=YES; + SCANTEXT=YES; + USEDATE=NO; + SCANTIME=NO; +RUN; + %print(raw_metadf); + %save_dataset(raw_metadf); *ԭʼ���ݼ�����; + +PROC IMPORT OUT=WORK.raw_airqualitydf + DATAFILE="d:airquality.xlsx" + DBMS=EXCEL REPLACE; + RANGE="airqualitydf$"; + GETNAMES=YES; + MIXED=YES; + SCANTEXT=YES; + USEDATE=NO; *ΪYES��������; + SCANTIME=NO; *ΪYES��������; +RUN; + %print(raw_airqualitydf); + %save_dataset(raw_airqualitydf); *ԭʼ���ݼ�����; + + +%kill; +/*����Ӳ��ԭʼ���ݼ�*/ +%load_dataset(raw_metadf); +%load_dataset(raw_airqualitydf); +/*�鿴���ݼ�����*/ +%contents(raw_metadf); +%contentsshort(raw_metadf); +/*site name Area lon lat*/ +%contents(raw_airqualitydf); +%contentsshort(raw_airqualitydf); +/*datetime site 'CO_mg/m3'n 'CO_24h_mg/m3'n 'NO2_��g/m3'n 'NO2_24h_��g/m3'n 'O3_��g/m3'n 'O3_24h_��g/m3'n 'O3_8h_��g/m3'n 'O3_8h_24h_��g/m3'n 'PM10_��g/m3'n 'PM10_24h_��g/m3'n 'PM2#5_��g/m3'n 'PM2#5_24h_��g/m3'n 'SO2_��g/m3'n 'SO2_24h_��g/m3'n AQI PrimaryPollutant Quality Unheathful*/ + +%printobs(raw_metadf,10); +%printobs(raw_airqualitydf,10); +proc sort data=raw_metadf out=metadfsorted; + by site; +run; +proc sort data=raw_airqualitydf out=airqualitydfsorted; + by site; +run; +/*�ϲ����ݼ�������Ԥ��������ȡ���ڡ�ʱ�䲿�֣�����day��night*/ +data airquality; + retain datetime date time DayNight site name Area AQI lon lat; + length DayNight $ 5; + merge metadfsorted airqualitydfsorted; + by site; + date=datepart(datetime); + time=timepart(datetime); + if '8:00't<=time<'20:00't then DayNight='day'; + else DayNight='night'; + format datetime e8601dt25. date yymmdd10. time time5.; + keep site name Area lon lat datetime date time DayNight AQI; +run; + %printobs(airquality,100); + %save_dataset(airquality); *�ϲ����ݼ�����; + + + +%kill; +/*#################### DATA SET airquality ####################*/ +/*����Ӳ�̺ϲ����ݼ�*/ +%load_dataset(airquality); +%printobs(airquality,100); + +/*���site��name�����Ƿ�һ�£����ֲ�һ�£�����site����ͳ��*/ +proc sql; + select count(distinct(site)) as count_site from airquality; + select count(distinct(name)) as count_name from airquality; +quit; +/* +count_site +1714 +count_name +1522 +*/ + + +/*#########################################################################*/ +/*��������ͳ�ư��죨8:00-20:00����ҹ����20:00-8:00���п�������ָ����AQI����λ��*/ +/*#########################################################################*/ +/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@*/ +ods pdf file='d:means.pdf' style=sapphire dpi=1200; +proc means data=airquality median maxdec=1; + class site DayNight; + var AQI; + where AQI is not missing; +run; +ods pdf close; +/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@*/ + + +/*####################################################################################################*/ +/*������ͳ�Ƶ������в�����AQI30%��λֵ�IJ�����ռ�ȣ��г�����ռ����ߵ�10�����У������Dz�����������5���ij��У�*/ +/*####################################################################################################*/ +/*����鿴���в�����AQI30%��λֵ��Ϊ��SQL��֤������ȥ*/ +proc univariate data=airquality noprint; + var AQI; + output out=airqualitystats pctlpts=30 pctlpre=P; +run; + %print(airqualitystats); /*42*/ + +/*������в�����AQI30%��λֵ�������*/ +proc sql; + select AQI into : xvalues separated by ',' from airquality; + select distinct(pctl(30, &xvalues)) into : P30 from airquality; +quit; +/*�鿴���в�����AQI30%��λֵ�ĺ����ֵ��Ϊ��������*/ + %put P30=&P30.; + +/*�����в�����AQI30%��λֵ��AQI�ּ����Ժϲ����ݼ����в�������������ֱ�ӷּ��������ø���������λ������ͳ�ƣ�����ȥ*/ +data airquality1; + set airquality; + if AQI<&P30. then quality='good'; + else quality='fair'; +run; + %printobs(airquality1,100); + +/*������в�����AQI��λ��*/ +proc means data=airquality median maxdec=1; + class Area site; + var AQI; + where AQI is not missing; + output out=airqualitymedian median=; +run; + %print(airqualitymedian); + +/*�����в�����AQI30%��λֵ��AQI��λ���ּ�*/ +data airqualitymedian1; + set airqualitymedian; + if AQI<&P30. then quality='good'; + else quality='fair'; + where _TYPE_=3; +run; + %print(airqualitymedian1); + +/*������ͳ�Ƶ������в�����AQI30%��λֵ�IJ�����ռ�ȣ��鿴���*/ +/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@*/ +ods pdf file='d:freq.pdf' style=sapphire dpi=1200; +proc freq data=airqualitymedian1; + table Area*quality /nocol nopercent; +run; +ods pdf close; +/*@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@*/ +/*������ͳ�Ƶ������в�����AQI30%��λֵ�IJ�����ռ�ȣ����Ƶ��ͳ�ƽ�������ݼ�*/ +proc freq data=airqualitymedian1; + table Area*quality /outpct out=airqualitymedianoutrow(drop=percent pct_col); *��������Ƶ�����аٷֱ�; +run; + %printobs(airqualitymedianoutrow,100); + +/*�����жԲ�����������ͳ�ƣ��鿴���������ȥ*/ +proc means data=airqualitymedianoutrow sum maxdec=0; + class Area; + var COUNT; +run; +/*�����������������5���ij��У��鿴���������ȥ*/ +proc sql; + select *,sum(COUNT) as total_COUNT from airqualitymedianoutrow group by Area having calculated total_COUNT>=5 order by quality desc,PCT_ROW desc,COUNT desc; +quit; +/*����������������5���ij��У���������ݼ�*/ +proc sql; + create table airqualitymedianoutrow5 as select *,sum(COUNT) as total_COUNT from airqualitymedianoutrow group by Area having calculated total_COUNT>=5 order by quality desc,PCT_ROW desc,COUNT desc; +quit; +/*�г�����ռ����ߵ�10�����У�����������������5���ij��У�*/ +/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/ +ods pdf file='d:airqualitymedianoutrow5.pdf' style=sapphire dpi=1200; + %printobs(airqualitymedianoutrow5,10); + %printobs(airqualitymedianoutrow5,20); + %printobs(airqualitymedianoutrow5,30); + %print(airqualitymedianoutrow5); +ods pdf close; +/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/ + + +/*#####################################################*/ +/*���ղ�ͬ���з��飬ͳ�ư�����ҹ��AQI��λ���Ƿ������������*/ +/*#####################################################*/ +/*�����е�siteû��Area��Ӧ*/ +proc sql; + select distinct(Area),count(distinct(Area)) as count_Area from airquality; +quit; +proc print data=airquality; + where Area is missing; +run; +proc sql; + select distinct(site),count(distinct(site)) as count_site from airquality where Area is missing; +quit; +/*��4��site�������㣩û��Area�����У���Ӧ +site count_site +2628A 4 +3128A 4 +4034A 4 +4036A 4 +*/ +proc sort data=airquality out=airqualitysorted; + by Area; +run; +/*���ղ�ͬ���з��飬ͳ�ư�����ҹ��AQI��λ�����鿴���������ȥ*/ +proc means data=airqualitysorted median maxdec=1; + by Area; + class DayNight; + var AQI; + where AQI is not missing; +run; +/*��ͳ�ؿ���������ҹ��AQI��λ���Ƿ������������*/ +proc npar1way data=airquality median; + class DayNight; + var AQI; +run; +/*���ղ�ͬ���з��飬ͳ�ư�����ҹ��AQI��λ���Ƿ������������*/ +/*@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/ +ods pdf file='d:npar1waymedian.pdf' style=sapphire dpi=1200; +proc npar1way data=airqualitysorted median; + class DayNight; + var AQI; + by Area; + where Area is not missing; +run; +ods pdf close; +/*@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/ +/* +Using Wilcoxon scores in the linear rank statistic for two-sample data produces the rank sum statistic of the Mann-Whitney-Wilcoxon test. +Using Wilcoxon scores in the one-way ANOVA statistic produces the Kruskal-Wallis test. +Wilcoxon scores are locally most powerful for location shifts of a logistic distribution. +*//* +Using median scores in the linear rank statistic for two-sample data produces the two-sample median test. +The one-way ANOVA statistic with median scores is equivalent to the Brown-Mood test. +Median scores are particularly powerful for distributions that are symmetric and heavy-tailed.*/ + +/* +Scores for Linear Rank and One-Way ANOVA Tests +For each score type that you specify, PROC NPAR1WAY computes a one-way ANOVA statistic and also a linear rank statistic for two-sample data. The following score types are used primarily to test for differences in location: Wilcoxon, median, Van der Waerden (normal), and Savage. The following scores types are used to test for scale differences: Siegel-Tukey, Ansari-Bradley, Klotz, and Mood. Conover scores can be used to test for differences in both location and scale. This section gives formulas for the score types available in PROC NPAR1WAY. For further information about the formulas and the applicability of each score, see Randles and Wolfe (1979), Gibbons and Chakraborti (2010), Conover (1999), and Hollander and Wolfe (1999). +In addition to the score types described in this section, you can specify the SCORES=DATA option to use the input data observations as scores. This enables you to produce a wide variety of tests. You can construct any scores by using the DATA step, and then you can use PROC NPAR1WAY to compute the corresponding linear rank and one-way ANOVA tests for these scores. You can also analyze raw (unscored) data by using the SCORES=DATA option; for two-sample data, the corresponding exact test is a permutation test that is known as Pitman��s test. +*/ +/*@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/ +ods pdf file='d:npar1wayConover.pdf' style=sapphire dpi=1200; +proc npar1way data=airqualitysorted Conover; + class DayNight; + var AQI; + by Area; + where Area is not missing; +run; +/*@@@@@@@@@@@@@@@@@@@@@@@@@@@ PDF @@@@@@@@@@@@@@@@@@@@@@@@@*/ +/*Conover scores can be used to test for differences in both location and scale.*/ diff --git a/SD/4.1_datavisualize/_extensions b/SD/4.1_datavisualize/_extensions new file mode 120000 index 0000000..74119e3 --- /dev/null +++ b/SD/4.1_datavisualize/_extensions @@ -0,0 +1 @@ +../../_extensions \ No newline at end of file diff --git a/SD/4.1_datavisualize/index.qmd b/SD/4.1_datavisualize/index.qmd new file mode 100644 index 0000000..e203666 --- /dev/null +++ b/SD/4.1_datavisualize/index.qmd @@ -0,0 +1,3938 @@ +--- +title: "数据可视化" +subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution +author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 +date: today +lang: zh +format: + revealjs: + theme: dark + slide-number: true + chalkboard: + buttons: true + preview-links: auto + lang: zh + toc: true + toc-depth: 1 + toc-title: 大纲 + logo: ./_extensions/inst/img/ucaslogo.png + css: ./_extensions/inst/css/revealjs.css + pointer: + key: "p" + color: "#32cd32" + pointerSize: 18 +revealjs-plugins: + - pointer +filters: + - d2 +knitr: + opts_chunk: + dev: "svg" + retina: 3 +execute: + freeze: auto + cache: true + echo: true + fig-width: 5 + fig-height: 6 +--- + +```{r} +#| include: false +#| cache: false +knitr::opts_chunk$set(echo = TRUE) +source("../../coding/_common.R") +require(learnr) +library(tidyverse) +library(palmerpenguins) +library(ggthemes) +``` + + + +## {background-image="../../img/concepts/tidyverse-packages-ggplot.png" background-position="center" background-size="100%"} + + + +## The ggplot2 Package + +<br> + +... is an **R package to visualize data** created by Hadley Wickham in 2005 + +```{r} +#| label: ggplot-package-install-2 +#| eval: false +# install.packages("ggplot2") +library(ggplot2) +``` + +<br> + +::: fragment +... is part of the [`{tidyverse}`](https://www.tidyverse.org/) + +```{r} +#| label: tidyverse-package-install-2 +#| eval: false +# install.packages("tidyverse") +library(tidyverse) +``` +::: + +# The Grammar of {ggplot2} + + + +## The Grammar of {ggplot2} + +<br> +<table style='width:100%;font-size:14pt;'> + <tr> + <th>Component</th> + <th>Function</th> + <th>Explanation</th> + </tr> + <tr> + <td><b style='color:#67676;'>Data</b></td> + <td><code>ggplot(data)</code> </td> + <td>*The raw data that you want to visualise.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Aesthetics </b></td> + <td><code>aes()</code></td> + <td>*Aesthetic mappings between variables and visual properties.*</td> + <tr> + <td><b style='color:#67676;'>Geometries</b></td> + <td><code>geom_*()</code></td> + <td>*The geometric shapes representing the data.*</td> + </tr> +</table> + + + +## The Grammar of {ggplot2} + + +<br> +<table style='width:100%;font-size:14pt;'> + <tr> + <th>Component</th> + <th>Function</th> + <th>Explanation</th> + </tr> + <tr> + <td><b style='color:#67676;'>Data</b></td> + <td><code>ggplot(data)</code> </td> + <td>*The raw data that you want to visualise.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Aesthetics </b></td> + <td><code>aes()</code></td> + <td>*Aesthetic mappings between variables and visual properties.*</td> + <tr> + <td><b style='color:#67676;'>Geometries</b></td> + <td><code>geom_*()</code></td> + <td>*The geometric shapes representing the data.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Statistics</b></td> + <td><code>stat_*()</code></td> + <td>*The statistical transformations applied to the data.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Scales</b></td> + <td><code>scale_*()</code></td> + <td>*Maps between the data and the aesthetic dimensions.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Coordinate System</b></td> + <td><code>coord_*()</code></td> + <td>*Maps data into the plane of the data rectangle.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Facets</b></td> + <td><code>facet_*()</code></td> + <td>*The arrangement of the data into a grid of plots.*</td> + </tr> + <tr> + <td><b style='color:#67676;'>Visual Themes</b></td> + <td><code>theme() / theme_*()</code></td> + <td>*The overall visual defaults of a plot.*</td> + </tr> +</table> + + + +## The Data + +<b style='font-size:2.3rem;'>Bike sharing counts in London, UK, powered by [TfL Open Data](https://tfl.gov.uk/modes/cycling/santander-cycles)</b> + +::: incremental +- covers the years 2015 and 2016 +- incl. weather data acquired from [freemeteo.com](https://freemeteo.com) +- prepared by Hristo Mavrodiev for [Kaggle](https://www.kaggle.com/hmavrodiev/london-bike-sharing-dataset) +::: + +<br> + +::: fragment +```{r} +#| label: data-import +bikes <- readr::read_csv("../../data/ggplot2/london-bikes-custom.csv", + ## or: "https://raw.githubusercontent.com/z3tt/graphic-design-ggplot2/main/data/london-bikes-custom.csv" + col_types = "Dcfffilllddddc" +) + +bikes$season <- forcats::fct_inorder(bikes$season) +``` +::: + +------------------------------------------------------------------------ + +```{r} +#| label: data-table +#| echo: false +#| purl: false +library(tidyverse) +tibble( + Variable = names(bikes), + Description = c( + "Date encoded as `YYYY-MM-DD`", "`day` (6:00am–5:59pm) or `night` (6:00pm–5:59am)", "`2015` or `2016`", "`1` (January) to `12` (December)", "`winter`, `spring`, `summer`, or `autumn`", "Sum of reported bikes rented", "`TRUE` being Monday to Friday and no bank holiday", "`TRUE` being Saturday or Sunday", "`TRUE` being a bank holiday in the UK", "Average air temperature (°C)", "Average feels like temperature (°C)", "Average air humidity (%)", "Average wind speed (km/h)", "Most common weather type" + ), + Class = c( + "date", "character", "factor", "factor", "factor", "integer", "logical", "logical", "logical", "double", "double", "double", "double", "character" + ) + ) %>% + kableExtra::kbl( + booktabs = TRUE, longtable = TRUE + ) %>% + kableExtra::kable_styling( + font_size = 20 + ) %>% + kableExtra::kable_minimal( + "hover", full_width = TRUE, position = "left", html_font = "Spline Sans Mono" + ) +``` + +## `ggplot2::ggplot()` + +```{r} +#| label: ggplot-function +#| eval: false +#| echo: false +#?ggplot +``` + +{fig-alt="The help page of the ggplot() function." fig-width="175%"} + +## Data + +```{r} +#| label: setup-ggplot-slides +#| include: false +#| purl: false +library(ggplot2) +theme_set(theme_grey(base_size = 14)) +``` + +```{r} +#| label: ggplot-data +#| output-location: column +ggplot(data = bikes) +``` + +## Aesthetic Mapping(视觉映射):`aes(.)` + +<br> + +<b class='simple-highlight-grn' style='font-size:2.6rem;'>= link variables to graphical properties</b><br><br> + +::: incremental +- positions (`x`, `y`) +- colors (`color`, `fill`) +- shapes (`shape`, `linetype`) +- size (`size`) +- transparency (`alpha`) +- groupings (`group`) +::: + +## Aesthetic Mapping(视觉映射):`aes(.)` + +```{r} +#| label: ggplot-aesthetics-outside +#| output-location: column +#| code-line-numbers: "2|1,2" +ggplot(data = bikes) + + aes(x = temp_feel, y = count) +``` + +## <span style='color:#4758AB;'>aes</span>thetics + +`aes()` outside as component + +```{r} +#| label: ggplot-aesthetics-outside-comp +#| eval: false +ggplot(data = bikes) + + aes(x = temp_feel, y = count) +``` + +<br> + +::: fragment +`aes()` inside, explicit matching + +```{r} +#| label: ggplot-aesthetics-inside +#| eval: false +ggplot(data = bikes, mapping = aes(x = temp_feel, y = count)) +``` + +<br> +::: + +::: fragment +`aes()` inside, implicit matching + +```{r} +#| label: ggplot-aesthetics-inside-implicit +#| eval: false +ggplot(bikes, aes(temp_feel, count)) +``` + +<br> +::: + +::: fragment +`aes()` inside, mixed matching + +```{r} +#| label: ggplot-aesthetics-inside-mix +#| eval: false +ggplot(bikes, aes(x = temp_feel, y = count)) +``` +::: + +# Geometrical Layers + +## Geometries(几何图层):geom_* + +<br> + +<b class='simple-highlight-grn' style='font-size:2.6rem;'>= interpret aesthetics as graphical representations</b><br><br> + +::: incremental +- points +- lines +- polygons +- text labels +- ... +::: + +## Geometries(几何图层):geom_* + +```{r} +#| label: geom-point +#| output-location: column +#| code-line-numbers: "1,2,3,4|5" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point() +``` + +## Visual Properties of Layers(图层属性) + +```{r} +#| label: geom-point-properties +#| output-location: column +#| code-line-numbers: "5,6,7,8,9,10,11|6,7,8,9,10" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + color = "#28a87d", + alpha = .5, + shape = "X", + stroke = 1, + size = 4 + ) +``` + +## Setting vs Mapping of Visual Properties + +::: {layout-ncol="2"} +```{r} +#| label: geom-point-properties-set +#| fig-height: 3.5 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + color = "#28a87d", + alpha = .5 + ) +``` + +::: fragment +```{r} +#| label: geom-point-properties-map +#| fig-height: 3.5 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + aes(color = season), + alpha = .5 + ) +``` +::: +::: + +## Mapping Expressions + +```{r} +#| label: geom-point-aes-expression +#| output-location: column +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + aes(color = temp_feel > 20), + alpha = .5 + ) +``` + +## Filter Data + +```{r} +#| label: geom-point-aes-expression-exercise-na +#| output-location: column +#| code-line-numbers: "2" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = temp, y = temp_feel) + ) + + geom_point( + aes(color = weather_type == "clear", + size = count), + shape = 18, + alpha = .5 + ) +``` + +## Filter Data + +```{r} +#| label: geom-point-aes-expression-exercise-na-pipe +#| output-location: column +#| code-line-numbers: "2" +ggplot( + bikes %>% filter(!is.na(weather_type)), + aes(x = temp, y = temp_feel) + ) + + geom_point( + aes(color = weather_type == "clear", + size = count), + shape = 18, + alpha = .5 + ) +``` + +```{r} +#| label: reset-theme +#| include: false +#| purl: false +theme_set(theme_grey(base_size = 14)) +``` + +## Local vs. Global(应用至当前图层或所有图层) + +::: {layout-ncol="2"} +```{r} +#| label: geom-point-aes-geom +#| code-line-numbers: "3,6" +#| fig-height: 3.2 +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + aes(color = season), + alpha = .5 + ) +``` + +::: fragment +```{r} +#| label: geom-point-aes-global +#| code-line-numbers: "3,4" +#| fig-height: 3.2 +ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season) + ) + + geom_point( + alpha = .5 + ) +``` +::: +::: + +## Adding More Layers + +```{r} +#| label: geom-smooth +#| output-location: column +#| code-line-numbers: "9,10,11" +ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season) + ) + + geom_point( + alpha = .5 + ) + + geom_smooth( + method = "lm" + ) +``` + +## Global Color Encoding + +```{r} +#| label: geom-smooth-aes-global +#| output-location: column +#| code-line-numbers: "3,4,9,10,11" +ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season) + ) + + geom_point( + alpha = .5 + ) + + geom_smooth( + method = "lm" + ) +``` + +## Local Color Encoding + +```{r} +#| label: geom-smooth-aes-fixed +#| output-location: column +#| code-line-numbers: "6,9,10,11" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + aes(color = season), + alpha = .5 + ) + + geom_smooth( + method = "lm" + ) +``` + +## The \`group\` Aesthetic + +```{r} +#| label: geom-smooth-aes-grouped +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point( + aes(color = season), + alpha = .5 + ) + + geom_smooth( + aes(group = day_night), + method = "lm" + ) +``` + +## Set Both as Global Aesthetics + +```{r} +#| label: geom-smooth-aes-global-grouped +#| output-location: column +#| code-line-numbers: "4,5" +ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season, + group = day_night) + ) + + geom_point( + alpha = .5 + ) + + geom_smooth( + method = "lm" + ) +``` + +## Overwrite Global Aesthetics + +```{r} +#| label: geom-smooth-aes-global-grouped-overwrite +#| output-location: column +#| code-line-numbers: "4,12" +ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season, + group = day_night) + ) + + geom_point( + alpha = .5 + ) + + geom_smooth( + method = "lm", + color = "black" + ) +``` + + + +# Statistical Layers + + +## \`stat_\*()\` and \`geom_\*()\` + +::: {layout-ncol="2"} +```{r} +#| label: stat-geom +#| fig-height: 5.1 +#| code-line-numbers: "2" +ggplot(bikes, aes(x = temp_feel, y = count)) + + stat_smooth(geom = "smooth") +``` + +```{r} +#| label: geom-stat +#| fig-height: 5.1 +#| code-line-numbers: "2" +ggplot(bikes, aes(x = temp_feel, y = count)) + + geom_smooth(stat = "smooth") +``` +::: + + +## \`stat_\*()\` and \`geom_\*()\` + +::: {layout-ncol="2"} +```{r} +#| label: stat-geom-2 +#| fig-height: 5.1 +#| code-line-numbers: "2" +ggplot(bikes, aes(x = season)) + + stat_count(geom = "bar") +``` + +```{r} +#| label: geom-stat-2 +#| fig-height: 5.1 +#| code-line-numbers: "2" +ggplot(bikes, aes(x = season)) + + geom_bar(stat = "count") +``` +::: + + +## \`stat_\*()\` and \`geom_\*()\` + +::: {layout-ncol="2"} +```{r} +#| label: stat-geom-3 +#| fig-height: 5.1 +#| code-line-numbers: "2" +ggplot(bikes, aes(x = date, y = temp_feel)) + + stat_identity(geom = "point") +``` + +```{r} +#| label: geom-stat-3 +#| fig-height: 5.1 +#| code-line-numbers: "2" +ggplot(bikes, aes(x = date, y = temp_feel)) + + geom_point(stat = "identity") +``` +::: + +## Statistical Summaries + +```{r} +#| label: stat-summary +#| output-location: column +#| code-line-numbers: "5|3" +ggplot( + bikes, + aes(x = season, y = temp_feel) + ) + + stat_summary() +``` + + +## Statistical Summaries + +```{r} +#| label: stat-summary-defaults +#| output-location: column +#| code-line-numbers: "6,7" +ggplot( + bikes, + aes(x = season, y = temp_feel) + ) + + stat_summary( + fun.data = mean_se, ## the default + geom = "pointrange" ## the default + ) +``` + + +## Statistical Summaries + +```{r} +#| label: stat-summary-median +#| output-location: column +#| code-line-numbers: "5|5,6,11|6,7,8,9,10,11|7,8" +ggplot( + bikes, + aes(x = season, y = temp_feel) + ) + + geom_boxplot() + + stat_summary( + fun = mean, + geom = "point", + color = "#28a87d", + size = 3 + ) +``` + + +## Statistical Summaries + +```{r} +#| label: stat-summary-custom +#| output-location: column +#| code-line-numbers: "5,6,7,8,9|7,8" +ggplot( + bikes, + aes(x = season, y = temp_feel) + ) + + stat_summary( + fun = mean, + fun.max = function(y) mean(y) + sd(y), + fun.min = function(y) mean(y) - sd(y) + ) +``` + + + +# Extending a ggplot + +## Store a ggplot as Object + +```{r} +#| label: ggplot-object +#| code-line-numbers: "1,16" +g <- + ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season, + group = day_night) + ) + + geom_point( + alpha = .5 + ) + + geom_smooth( + method = "lm", + color = "black" + ) + +class(g) +``` + +## Inspect a ggplot Object + +```{r} +#| label: ggplot-object-data +g$data +``` + +## Inspect a ggplot Object + +```{r} +#| label: ggplot-object-mapping +g$mapping +``` + +## Extend a ggplot Object: Add Layers + +```{r} +#| label: ggplot-object-extend-geom +#| output-location: column +g + + geom_rug( + alpha = .2 + ) +``` + +## Remove a Layer from the Legend + +```{r} +#| label: geom-guide-none +#| output-location: column +#| code-line-numbers: "4" +g + + geom_rug( + alpha = .2, + show.legend = FALSE + ) +``` + +## Extend a ggplot Object: Add Labels + +```{r} +#| label: ggplot-labs-individual +#| output-location: column +#| code-line-numbers: "2,3,4" +g + + xlab("Feels-like temperature (°F)") + + ylab("Reported bike shares") + + ggtitle("TfL bike sharing trends") +``` + +## Extend a ggplot Object: Add Labels + +```{r} +#| label: ggplot-labs-bundled +#| output-location: column +#| code-line-numbers: "2,3,4,5,6" +g + + labs( + x = "Feels-like temperature (°F)", + y = "Reported bike shares", + title = "TfL bike sharing trends" + ) +``` + +## Extend a ggplot Object: Add Labels + +```{r} +#| label: ggplot-labs-bundled-color +#| output-location: column +#| code-line-numbers: "6" +g <- g + + labs( + x = "Feels-like temperature (°F)", + y = "Reported bike shares", + title = "TfL bike sharing trends", + color = "Season:" + ) + +g +``` + +## Extend a ggplot Object: Add Labels + +```{r} +#| label: ggplot-labs-bundled-extended +#| output-location: column +#| code-line-numbers: "6,7,9" +g + + labs( + x = "Feels-like temperature (°F)", + y = "Reported bike shares", + title = "TfL bike sharing trends", + subtitle = "Reported bike rents versus feels-like temperature in London", + caption = "Data: TfL", + color = "Season:", + tag = "Fig. 1" + ) +``` + +## Extend a ggplot Object: Add Labels + +::: {layout-ncol="2"} +```{r} +#| label: ggplot-labs-empty-vs-null-A +#| fig-height: 3.6 +#| code-line-numbers: "3" +g + + labs( + x = "", + caption = "Data: TfL" + ) +``` + +```{r} +#| label: ggplot-labs-empty-vs-null-B +#| fig-height: 3.6 +#| code-line-numbers: "3" +g + + labs( + x = NULL, + caption = "Data: TfL" + ) +``` +::: + +## Extend a ggplot Object: Themes + +::: {layout-ncol="2"} +```{r} +#| label: ggplot-object-extend-theme-light +#| fig-height: 5.5 +g + theme_light() +``` + +::: fragment +```{r} +#| label: ggplot-object-extend-theme-minimal +#| fig-height: 5.5 +g + theme_minimal() +``` +::: +::: + +## Change the Theme Base Settings + +```{r} +#| label: ggplot-theme-extend-theme-base +#| output-location: column +#| code-line-numbers: "2,3|1,2,3,4" +g + theme_light( + base_size = 14 +) +``` + +## Set a Theme Globally + +```{r} +#| label: ggplot-theme-global +#| output-location: column +theme_set(theme_light()) + +g +``` + +## Change the Theme Base Settings + +```{r} +#| label: ggplot-theme-global-base +#| output-location: column +#| code-line-numbers: "2,3|1,2,3,4" +theme_set(theme_light( + base_size = 14 +)) + +g +``` + + +## Overwrite Specific Theme Settings + +```{r} +#| label: ggplot-theme-settings-individual-1 +#| output-location: column +#| code-line-numbers: "2|3" +g + + theme( + panel.grid.minor = element_blank() + ) +``` + +## Overwrite Specific Theme Settings + +```{r} +#| label: ggplot-theme-settings-individual-2 +#| output-location: column +#| code-line-numbers: "4" +g + + theme( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold") + ) +``` + +## Overwrite Specific Theme Settings + +```{r} +#| label: ggplot-theme-settings-individual-3 +#| output-location: column +#| code-line-numbers: "5" +g + + theme( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold"), + legend.position = "top" + ) +``` + +## Overwrite Specific Theme Settings + +```{r} +#| label: ggplot-theme-settings-individual-legend-none +#| output-location: column +#| code-line-numbers: "5" +g + + theme( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold"), + legend.position = "none" + ) +``` + +## Overwrite Specific Theme Settings + +```{r} +#| label: ggplot-theme-settings-individual-4 +#| output-location: column +#| code-line-numbers: "6|2,3,4,6,7" +g + + theme( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold"), + legend.position = "top", + plot.title.position = "plot" + ) +``` + +## Overwrite Theme Settings Globally + +```{r} +#| label: ggplot-theme-settings-global +#| output-location: column +#| code-line-numbers: "1|2,3,4,5|1,2,3,4,5,6" +theme_update( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold"), + legend.position = "top", + plot.title.position = "plot" +) + +g +``` + +## Save the Graphic + +```{r} +#| label: ggplot-save +#| eval: false +ggsave(g, filename = "my_plot.png") +``` + +::: fragment +```{r} +#| label: ggplot-save-implicit +#| eval: false +ggsave("my_plot.png") +``` +::: + +::: fragment +```{r} +#| label: ggplot-save-aspect +#| eval: false +ggsave("my_plot.png", width = 8, height = 5, dpi = 600) +``` +::: + +::: fragment +```{r} +#| label: ggplot-save-vector +#| eval: false +ggsave("my_plot.pdf", width = 20, height = 12, unit = "cm", device = cairo_pdf) +``` +::: + +::: fragment +```{r} +#| label: ggplot-save-cairo_pdf +#| eval: false +grDevices::cairo_pdf("my_plot.pdf", width = 10, height = 7) +g +dev.off() +``` +::: + +------------------------------------------------------------------------ + +<br> + +{fig-alt="A comparison of vector and raster graphics." fig-width="150%"} + +# Facets(面) + +## Facets(面) + +<br> + +<b class='simple-highlight-grn' style='font-size:2.6rem;'>= split variables to multiple panels</b><br><br> + +::: fragment +Facets are also known as: + +- small multiples +- trellis graphs +- lattice plots +- conditioning +::: + +------------------------------------------------------------------------ + +::: {layout-ncol="2"} +```{r} +#| label: facet-types-wrap +#| echo: false +#| purl: false +ggplot(bikes, aes(x = 1, y = 1)) + + geom_text( + aes(label = paste0("Subset for\n", stringr::str_to_title(season))), + size = 5, family = "Cabinet Grotesk", lineheight = .9 + ) + + facet_wrap(~stringr::str_to_title(season)) + + ggtitle("facet_wrap()") + + theme_bw(base_size = 24) + + theme( + plot.title = element_text(hjust = .5, family = "Tabular", face = "bold"), + strip.text = element_text(face = "bold", size = 18), + panel.grid = element_blank(), + axis.ticks = element_blank(), + axis.text = element_blank(), + axis.title = element_blank(), + plot.background = element_rect(color = "#f8f8f8", fill = "#f8f8f8"), + plot.margin = margin(t = 3, r = 25) + ) +``` + +::: fragment +```{r} +#| label: facet-types-grid +#| echo: false +#| purl: false +data <- tibble( + x = 1, y = 1, + day_night = c("Day", "Day", "Night", "Night"), + year = factor(c("2015", "2016", "2015", "2016"), levels = levels(bikes$year)), + label = c("Subset for\nDay × 2015", "Subset for\nDay × 2016", + "Subset for\nNight × 2015", "Subset for\nNight × 2016") +) + +ggplot(data, aes(x = 1, y = 1)) + + geom_text( + aes(label = label), + size = 5, family = "Cabinet Grotesk", lineheight = .9 + ) + + facet_grid(day_night ~ year) + + ggtitle("facet_grid()") + + theme_bw(base_size = 24) + + theme( + plot.title = element_text(hjust = .5, family = "Tabular", face = "bold"), + strip.text = element_text(face = "bold", size = 18), + panel.grid = element_blank(), + axis.ticks = element_blank(), + axis.text = element_blank(), + axis.title = element_blank(), + plot.background = element_rect(color = "#f8f8f8", fill = "#f8f8f8"), + plot.margin = margin(t = 3, l = 25) + ) +``` +::: +::: + +## Setup + +```{r} +#| label: theme-size-facets +#| include: false +#| purl: false +theme_set(theme_light(base_size = 12)) + +theme_update( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold"), + legend.position = "top", + plot.title.position = "plot" +) +``` + +```{r} +#| label: facet-setup +#| output-location: column +#| code-line-numbers: "1,2,3,4,5,6,7,8,9,10|12" +g <- + ggplot( + bikes, + aes(x = temp_feel, y = count, + color = season) + ) + + geom_point( + alpha = .3, + guide = "none" + ) + +g +``` + +## Wrapped Facets + +```{r} +#| label: facet-wrap +#| output-location: column +#| code-line-numbers: "1,2,3,4|2,4|3" +g + + facet_wrap( + vars(day_night) + ) +``` + +## Wrapped Facets + +```{r} +#| label: facet-wrap-circumflex +#| output-location: column +#| code-line-numbers: "3" +g + + facet_wrap( + ~ day_night + ) +``` + +## Facet Multiple Variables + +```{r} +#| label: facet-wrap-multiple +#| output-location: column +#| code-line-numbers: "3" +g + + facet_wrap( + ~ is_workday + day_night + ) +``` + +## Facet Options: Cols + Rows + +```{r} +#| label: facet-wrap-options-ncol +#| output-location: column +#| code-line-numbers: "4" +g + + facet_wrap( + ~ day_night, + ncol = 1 + ) +``` + +## Facet Options: Free Scaling + +```{r} +#| label: facet-wrap-options-scales +#| output-location: column +#| code-line-numbers: "5" +g + + facet_wrap( + ~ day_night, + ncol = 1, + scales = "free" + ) +``` + +## Facet Options: Free Scaling + +```{r} +#| label: facet-wrap-options-freey +#| output-location: column +#| code-line-numbers: "5" +g + + facet_wrap( + ~ day_night, + ncol = 1, + scales = "free_y" + ) +``` + +## Facet Options: Switch Labels + +```{r} +#| label: facet-wrap-options-switch +#| output-location: column +#| code-line-numbers: "5" +g + + facet_wrap( + ~ day_night, + ncol = 1, + switch = "x" + ) +``` + +## Gridded Facets + +```{r} +#| label: facet-grid +#| output-location: column +#| code-line-numbers: "2,5|3,4" +g + + facet_grid( + rows = vars(day_night), + cols = vars(is_workday) + ) +``` + +## Gridded Facets + +```{r} +#| label: facet-grid-circumflex +#| output-location: column +#| code-line-numbers: "3" +g + + facet_grid( + day_night ~ is_workday + ) +``` + +## Facet Multiple Variables + +```{r} +#| label: facet-grid-multiple +#| output-location: column +#| code-line-numbers: "3" +g + + facet_grid( + day_night ~ is_workday + season + ) +``` + +## Facet Options: Free Scaling + +```{r} +#| label: facet-grid-options-scales +#| output-location: column +#| code-line-numbers: "4" +g + + facet_grid( + day_night ~ is_workday, + scales = "free" + ) +``` + +## Facet Options: Switch Labels + +```{r} +#| label: facet-grid-options-switch +#| output-location: column +#| code-line-numbers: "5" +g + + facet_grid( + day_night ~ is_workday, + scales = "free", + switch = "y" + ) +``` + +## Facet Options: Proportional Spacing + +```{r} +#| label: facet-grid-options-space +#| output-location: column +#| code-line-numbers: "4,5|5" +g + + facet_grid( + day_night ~ is_workday, + scales = "free", + space = "free" + ) +``` + +## Facet Options: Proportional Spacing + +```{r} +#| label: facet-grid-options-space-y +#| output-location: column +#| code-line-numbers: "4,5" +g + + facet_grid( + day_night ~ is_workday, + scales = "free_y", + space = "free_y" + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-start +#| output-location: column +#| code-line-numbers: "1,2,3,4,5,6,7,8,9,10,11,12|8,9,10" +ggplot( + diamonds, + aes(x = carat, y = price) + ) + + geom_point( + alpha = .3 + ) + + geom_smooth( + method = "lm", + se = FALSE, + color = "dodgerblue" + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet +#| output-location: column +#| code-line-numbers: "13,14,15,16,17" +ggplot( + diamonds, + aes(x = carat, y = price) + ) + + geom_point( + alpha = .3 + ) + + geom_smooth( + method = "lm", + se = FALSE, + color = "dodgerblue" + ) + + facet_grid( + cut ~ clarity, + space = "free_x", + scales = "free_x" + ) +``` + +## Diamonds Facet (Dark Theme Bonus) + +```{r} +#| label: diamonds-facet-dark +#| output-location: column +#| code-line-numbers: "19,20,21,22" +ggplot( + diamonds, + aes(x = carat, y = price) + ) + + geom_point( + alpha = .3, + color = "white" + ) + + geom_smooth( + method = "lm", + se = FALSE, + color = "dodgerblue" + ) + + facet_grid( + cut ~ clarity, + space = "free_x", + scales = "free_x" + ) + + theme_dark( + base_size = 14 + ) +``` + +# Scales(尺度) + +```{r} +#| label: theme-size-reset +#| include: false +#| purl: false +theme_set(theme_light(base_size = 14)) + +theme_update( + panel.grid.minor = element_blank(), + plot.title = element_text(face = "bold"), + legend.position = "top", + plot.title.position = "plot" +) +``` + +## Scales + +<br> + +<b class='simple-highlight-grn' style='font-size:2.6rem;'>= translate between variable ranges and property ranges</b><br><br> + +::: incremental +- feels-like temperature ⇄ x +- reported bike shares ⇄ y +- season ⇄ color +- year ⇄ shape +- ... +::: + +## Scales + +The `scale_*()` components control the properties of all the<br><b class='simple-highlight-ylw'>aesthetic dimensions mapped to the data.</b> + +<br>Consequently, there are `scale_*()` functions for all aesthetics such as: + +- **positions** via `scale_x_*()` and `scale_y_*()` + +- **colors** via `scale_color_*()` and `scale_fill_*()` + +- **sizes** via `scale_size_*()` and `scale_radius_*()` + +- **shapes** via `scale_shape_*()` and `scale_linetype_*()` + +- **transparency** via `scale_alpha_*()` + +## Scales + +The `scale_*()` components control the properties of all the<br><b class='simple-highlight-ylw'>aesthetic dimensions mapped to the data.</b> + +<br>The extensions (`*`) can be filled by e.g.: + +- `continuous()`, `discrete()`, `reverse()`, `log10()`, `sqrt()`, `date()` for positions + +- `continuous()`, `discrete()`, `manual()`, `gradient()`, `gradient2()`, `brewer()` for colors + +- `continuous()`, `discrete()`, `manual()`, `ordinal()`, `area()`, `date()` for sizes + +- `continuous()`, `discrete()`, `manual()`, `ordinal()` for shapes + +- `continuous()`, `discrete()`, `manual()`, `ordinal()`, `date()` for transparency + +------------------------------------------------------------------------ + +](../../img/concepts/continuous_discrete.png){fig-size="120%" fig-align="center" fig-alt="Allison Horsts illustration ofthe correct use of continuous versus discrete; however, in {ggplot2} these are interpeted in a different way: as quantitative and qualitative."} + +## Continuous vs. Discrete in {ggplot2} + +::: {layout-ncol="2"} +## Continuous:<br>quantitative or numerical data + +- height +- weight +- age +- counts + +## Discrete:<br>qualitative or categorical data + +- species +- sex +- study sites +- age group +::: + +## Continuous vs. Discrete in {ggplot2} + +::: {layout-ncol="2"} +## Continuous:<br>quantitative or numerical data + +- height (continuous) +- weight (continuous) +- age (continuous or discrete) +- counts (discrete) + +## Discrete:<br>qualitative or categorical data + +- species (nominal) +- sex (nominal) +- study site (nominal or ordinal) +- age group (ordinal) +::: + +## Aesthetics + Scales + +```{r} +#| label: scales-default-invisible +#| output-location: column +#| code-line-numbers: "3,4" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() +``` + +## Aesthetics + Scales + +```{r} +#| label: scales-default +#| output-location: column +#| code-line-numbers: "3,4,7,8,9|7,8,9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_date() + + scale_y_continuous() + + scale_color_discrete() +``` + +## Scales + +```{r} +#| label: scales-overwrite-1 +#| output-location: column +#| code-line-numbers: "7" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_continuous() + + scale_y_continuous() + + scale_color_discrete() +``` + +## Scales + +```{r} +#| label: scales-overwrite-2 +#| output-location: column +#| code-line-numbers: "8" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_continuous() + + scale_y_log10() + + scale_color_discrete() +``` + +## Scales + +```{r} +#| label: scales-overwrite-3 +#| output-location: column +#| code-line-numbers: "9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_continuous() + + scale_y_log10() + + scale_color_viridis_d() +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-trans +#| output-location: column +#| code-line-numbers: "8,9,10|9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + trans = "log10" + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-name +#| output-location: column +#| code-line-numbers: "7,8,9|8" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares" + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-breaks-seq +#| output-location: column +#| code-line-numbers: "9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = seq(0, 60000, by = 15000) + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-breaks-short +#| output-location: column +#| code-line-numbers: "9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = 0:4*15000 + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-breaks-irregular +#| output-location: column +#| code-line-numbers: "9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = c(0, 2:12*2500, 40000, 50000) + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-labels +#| output-location: column +#| code-line-numbers: "8,10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares in thousands", + breaks = 0:4*15000, + labels = 0:4*15 + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-labels-paste +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares in thousands", + breaks = 0:4*15000, + labels = paste(0:4*15000, "bikes") + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-limits +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = 0:4*15000, + limits = c(NA, 60000) + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-expand.no +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = 0:4*15000, + expand = c(0, 0) + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-expand +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = -1:5*15000, + expand = c(.5, .5) ## c(add, mult) + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-expand-add-explicit +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = -1:5*15000, + expand = expansion(add = 2000) + ) +``` + +## \`scale_x\|y_continuous\` + +```{r} +#| label: scales-xy-continuous-guide-none +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_y_continuous( + name = "Reported bike shares", + breaks = 0:4*15000, + guide = "none" + ) +``` + +## \`scale_x\|y_date\` + +```{r} +#| label: scales-xy-date-breaks-months +#| output-location: column +#| code-line-numbers: "7,10|7,8,9,10|9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_date( + name = NULL, + date_breaks = "4 months" + ) +``` + +## \`scale_x\|y_date\` + +```{r} +#| label: scales-xy-date-breaks-weeks +#| output-location: column +#| code-line-numbers: "9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_date( + name = NULL, + date_breaks = "20 weeks" + ) +``` + +## \`scale_x\|y_date\` with \`strftime()\` + +```{r} +#| label: scales-xy-date-labels +#| output-location: column +#| code-line-numbers: "9,10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_date( + name = NULL, + date_breaks = "6 months", + date_labels = "%Y/%m/%d" + ) +``` + +## \`scale_x\|y_date\` with \`strftime()\` + +```{r} +#| label: scales-xy-date-labels-special +#| output-location: column +#| code-line-numbers: "10" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_x_date( + name = NULL, + date_breaks = "6 months", + date_labels = "%b '%y" + ) +``` + +## \`scale_x\|y_discrete\` + +```{r} +#| label: scales-xy-discrete +#| output-location: column +#| code-line-numbers: "3,6,9|6,7,8,9|7,8" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + scale_x_discrete( + name = "Period", + labels = c("Dec-Feb", "Mar-May", "Jun-Aug", "Sep-Nov") + ) +``` + +## \`scale_x\|y_discrete\` + +```{r} +#| label: scales-xy-discrete-expand +#| output-location: column +#| code-line-numbers: "8" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + scale_x_discrete( + name = "Season", + expand = c(.5, 0) ## add, mult + ) +``` + +## Discrete or Continuous? + +```{r} +#| label: scales-xy-fake-discrete-visible +#| output-location: column +#| code-line-numbers: "3,5,6,7" +ggplot( + bikes, + aes(x = as.numeric(season), y = count) + ) + + geom_boxplot( + aes(group = season) + ) +``` + +## Discrete or Continuous? + +```{r} +#| label: scales-xy-fake-discrete +#| output-location: column +#| code-line-numbers: "9,10,11,12,13|11|12" +ggplot( + bikes, + aes(x = as.numeric(season), + y = count) + ) + + geom_boxplot( + aes(group = season) + ) + + scale_x_continuous( + name = "Season", + breaks = 1:4, + labels = levels(bikes$season) + ) +``` + +## Discrete or Continuous? + +```{r} +#| label: scales-xy-fake-discrete-shift +#| output-location: column +#| code-line-numbers: "3,4" +ggplot( + bikes, + aes(x = as.numeric(season) + + as.numeric(season) / 8, + y = count) + ) + + geom_boxplot( + aes(group = season) + ) + + scale_x_continuous( + name = "Season", + breaks = 1:4, + labels = levels(bikes$season) + ) +``` + +## \`scale_color\|fill_discrete\` + +```{r} +#| label: scales-color-discrete-type-vector +#| output-location: column +#| code-line-numbers: "7,10|7,8,9,10|8,9" +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_color_discrete( + name = "Season:", + type = c("#69b0d4", "#00CB79", "#F7B01B", "#a78f5f") + ) +``` + +## Inspect Assigned Colors + +```{r} +#| label: scales-color-discrete-type-inspect +#| output-location: column +#| code-line-numbers: "1|12|14" +g <- ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_color_discrete( + name = "Season:", + type = c("#3ca7d9", "#1ec99b", "#F7B01B", "#bb7e8f") + ) + +gb <- ggplot_build(g) + +gb$data[[1]][c(1:5, 200:205, 400:405), 1:5] +``` + +## \`scale_color\|fill_discrete\` + +```{r} +#| label: scales-color-discrete-type-vector-named +#| output-location: column +#| code-line-numbers: "1,2,3,4,5,6|1,16" +my_colors <- c( + `winter` = "#3c89d9", + `spring` = "#1ec99b", + `summer` = "#F7B01B", + `autumn` = "#a26e7c" +) + +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_color_discrete( + name = "Season:", + type = my_colors + ) +``` + +## \`scale_color\|fill_discrete\` + +```{r} +#| label: scales-color-discrete-type-vector-named-shuffled +#| output-location: column +#| code-line-numbers: "2,5|1,16" +my_colors_alphabetical <- c( + `autumn` = "#a26e7c", + `spring` = "#1ec99b", + `summer` = "#F7B01B", + `winter` = "#3c89d9" +) + +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_color_discrete( + name = "Season:", + type = my_colors_alphabetical + ) +``` + +## \`scale_color\|fill_discrete\` + +```{r} +#| label: scales-color-discrete-type-palette +#| output-location: column +#| code-line-numbers: "1|11,12,13" +library(RColorBrewer) + +ggplot( + bikes, + aes(x = date, y = count, + color = season) + ) + + geom_point() + + scale_color_discrete( + name = "Season:", + type = brewer.pal( + n = 4, name = "Dark2" + ) + ) +``` + +## \`scale_color\|fill_manual\` + +```{r} +#| label: scales-color-manual-na +#| output-location: column +#| code-line-numbers: "4,9,10" +ggplot( + bikes, + aes(x = date, y = count, + color = weather_type) + ) + + geom_point() + + scale_color_manual( + name = "Season:", + values = brewer.pal(n = 6, name = "Pastel1"), + na.value = "black" + ) +``` + +## \`scale_color\|fill_carto_d\` + +```{r} +#| label: scales-color-discrete-carto +#| output-location: column +#| code-line-numbers: "7,8,9,10" +ggplot( + bikes, + aes(x = date, y = count, + color = weather_type) + ) + + geom_point() + + rcartocolor::scale_color_carto_d( + name = "Season:", + palette = "Pastel", + na.value = "black" + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-store +#| output-location: column +#| code-line-numbers: "1|10|20" +facet <- + ggplot( + diamonds, + aes(x = carat, y = price) + ) + + geom_point( + alpha = .3 + ) + + geom_smooth( + aes(color = cut), + method = "lm", + se = FALSE + ) + + facet_grid( + cut ~ clarity, + space = "free_x", + scales = "free_x" + ) + +facet +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-scales-xy +#| output-location: column +facet + + scale_x_continuous( + breaks = 0:5 + ) + + scale_y_continuous( + limits = c(0, 30000), + breaks = 0:3*10000, + labels = c("$0", "$10,000", "$20,000", "$30,000") + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-scales-y-paste-format +#| output-location: column +#| code-line-numbers: "8,9,10,11,12,13,14" +facet + + scale_x_continuous( + breaks = 0:5 + ) + + scale_y_continuous( + limits = c(0, 30000), + breaks = 0:3*10000, + labels = paste0( + "$", format( + 0:3*10000, + big.mark = ",", + trim = TRUE + ) + ) + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-scales-y-function +#| output-location: column +#| code-line-numbers: "8,9,10,11,12,13" +facet + + scale_x_continuous( + breaks = 0:5 + ) + + scale_y_continuous( + limits = c(0, 30000), + breaks = 0:3*10000, + labels = function(y) paste0( + "$", format( + y, big.mark = ",", + trim = TRUE + ) + ) + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-scales-y-dollar-format +#| output-location: column +#| code-line-numbers: "8" +facet + + scale_x_continuous( + breaks = 0:5 + ) + + scale_y_continuous( + limits = c(0, 30000), + breaks = 0:3*10000, + labels = scales::dollar_format() + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-scales-color +#| output-location: column +#| code-line-numbers: "10,11,12,13" +facet + + scale_x_continuous( + breaks = 0:5 + ) + + scale_y_continuous( + limits = c(0, 30000), + breaks = 0:3*10000, + labels = scales::dollar_format() + ) + + scale_color_brewer( + palette = "Set2", + guide = "none" + ) +``` + +## Diamonds Facet + +```{r} +#| label: diamonds-facet-scales-no-legend +#| output-location: column +#| code-line-numbers: "13,14,15" +facet + + scale_x_continuous( + breaks = 0:5 + ) + + scale_y_continuous( + limits = c(0, 30000), + breaks = 0:3*10000, + labels = scales::dollar_format() + ) + + scale_color_brewer( + palette = "Set2" + ) + + theme( + legend.position = "none" + ) +``` + +# Coordinate Systems(投影) + +## Coordinate Systems + +<br> + +<b class='simple-highlight-grn' style='font-size:2.6rem;'>= interpret the position aesthetics</b><br><br> + +::: incremental +- **linear coordinate systems:** preserve the geometrical shapes + - `coord_cartesian()` + - `coord_fixed()` + - `coord_flip()` +- **non-linear coordinate systems:** likely change the geometrical shapes + - `coord_polar()` + - `coord_map()` and `coord_sf()` + - `coord_trans()` +::: + +## Cartesian Coordinate System + +```{r} +#| label: coord-cartesian +#| output-location: column +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + coord_cartesian() +``` + +## Cartesian Coordinate System + +```{r} +#| label: coord-cartesian-zoom +#| output-location: column +#| code-line-numbers: "6,7,8" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + coord_cartesian( + ylim = c(NA, 15000) + ) +``` + +## Changing Limits + +::: {layout-ncol="2"} +```{r} +#| label: coord-cartesian-ylim +#| fig-height: 3.5 +#| code-line-numbers: "6,7,8" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + coord_cartesian( + ylim = c(NA, 15000) + ) +``` + +```{r} +#| label: scale-y-limits +#| fig-height: 3.5 +#| code-line-numbers: "6,7,8" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + scale_y_continuous( + limits = c(NA, 15000) + ) +``` +::: + +## Clipping + +```{r} +#| label: coord-clip +#| output-location: column +#| code-line-numbers: "8" +ggplot( + bikes, + aes(x = season, y = count) + ) + + geom_boxplot() + + coord_cartesian( + ylim = c(NA, 15000), + clip = "off" + ) +``` + +## Clipping + +```{r} +#| label: coord-clip-text +#| output-location: column +#| code-line-numbers: "2,3|6,7,8,9,10|12" +ggplot( + filter(bikes, is_holiday == TRUE), + aes(x = temp_feel, y = count) + ) + + geom_point() + + geom_text( + aes(label = season), + nudge_x = .3, + hjust = 0 + ) + + coord_cartesian( + clip = "off" + ) +``` + +## ... or better use {ggrepel} + +```{r} +#| label: coord-clip-text-repel +#| output-location: column +#| code-line-numbers: "6" +ggplot( + filter(bikes, is_holiday == TRUE), + aes(x = temp_feel, y = count) + ) + + geom_point() + + ggrepel::geom_text_repel( + aes(label = season), + nudge_x = .3, + hjust = 0 + ) + + coord_cartesian( + clip = "off" + ) +``` + +## Remove All Padding + +```{r} +#| label: coord-expand-off-clip +#| output-location: column +#| code-line-numbers: "7|8" +ggplot( + bikes, + aes(x = temp_feel, y = count) + ) + + geom_point() + + coord_cartesian( + expand = FALSE, + clip = "off" + ) +``` + +## Fixed Coordinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-fixed +#| fig-height: 4.2 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp_feel, y = temp) + ) + + geom_point() + + coord_fixed() +``` + +::: fragment +```{r} +#| label: coord-fixed-custom +#| fig-height: 4.2 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp_feel, y = temp) + ) + + geom_point() + + coord_fixed(ratio = 4) +``` +::: +::: + +## Flipped Coordinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-cartesian-comp-flip +#| fig-height: 4.1 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = weather_type) + ) + + geom_bar() + + coord_cartesian() +``` + +```{r} +#| label: coord-flip +#| fig-height: 4.1 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = weather_type) + ) + + geom_bar() + + coord_flip() +``` +::: + +## Flipped Coordinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-cartesian-switch-x-y +#| fig-height: 4.1 +#| code-line-numbers: "3,6" +ggplot( + bikes, + aes(y = weather_type) + ) + + geom_bar() + + coord_cartesian() +``` + +```{r} +#| label: coord-flip-again +#| fig-height: 4.1 +#| code-line-numbers: "3,6" +ggplot( + bikes, + aes(x = weather_type) + ) + + geom_bar() + + coord_flip() +``` +::: + +## Reminder: Sort Your Bars! + +```{r} +#| label: forcats-sort-infreq +#| output-location: column +#| code-line-numbers: "3|2" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(y = fct_infreq(weather_type)) + ) + + geom_bar() +``` + +## Reminder: Sort Your Bars! + +```{r} +#| label: forcats-sort-infreq-rev +#| output-location: column +#| code-line-numbers: "3,4,5" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(y = fct_rev( + fct_infreq(weather_type) + )) + ) + + geom_bar() +``` + +## Circular Corrdinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-polar +#| fig-height: 3.9 +#| code-line-numbers: "7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = weather_type, + fill = weather_type) + ) + + geom_bar() + + coord_polar() +``` + +::: fragment +```{r} +#| label: coord-cartesian-comp-polar +#| fig-height: 3.9 +#| code-line-numbers: "7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = weather_type, + fill = weather_type) + ) + + geom_bar() + + coord_cartesian() +``` +::: +::: + +## Circular Cordinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-polar-coxcomb +#| fig-height: 3.9 +#| code-line-numbers: "6,7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = fct_infreq(weather_type), + fill = weather_type) + ) + + geom_bar(width = 1) + + coord_polar() +``` + +```{r} +#| label: coord-cartesian-comp-polar-no-padding +#| fig-height: 3.9 +#| code-line-numbers: "6,7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = fct_infreq(weather_type), + fill = weather_type) + ) + + geom_bar(width = 1) + + coord_cartesian() +``` +::: + +## Circular Corrdinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-polar-theta-x +#| fig-height: 3.9 +#| code-line-numbers: "7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = fct_infreq(weather_type), + fill = weather_type) + ) + + geom_bar() + + coord_polar(theta = "x") +``` + +```{r} +#| label: coord-polar-theta-y +#| fig-height: 3.9 +#| code-line-numbers: "7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = fct_infreq(weather_type), + fill = weather_type) + ) + + geom_bar() + + coord_polar(theta = "y") +``` +::: + +## Circular Corrdinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-polar-pie +#| fig-height: 4.1 +#| code-line-numbers: "5" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = 1, fill = weather_type) + ) + + geom_bar(position = "stack") + + coord_polar(theta = "y") +``` + +```{r} +#| label: coord-cartesian-comp-polar-stacked +#| fig-height: 4.1 +#| code-line-numbers: "5" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = 1, fill = weather_type) + ) + + geom_bar(position = "stack") + + coord_cartesian() +``` +::: + +## Circular Corrdinate System + +::: {layout-ncol="2"} +```{r} +#| label: coord-polar-pie-sorted +#| fig-height: 3.6 +#| code-line-numbers: "4,6,7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = 1, + fill = fct_rev(fct_infreq(weather_type))) + ) + + geom_bar(position = "stack") + + coord_polar(theta = "y") + + scale_fill_discrete(name = NULL) +``` + +```{r} +#| label: coord-cartesian-comp-polar-stacked-sorted +#| fig-height: 3.6 +#| code-line-numbers: "4,6,7" +ggplot( + filter(bikes, !is.na(weather_type)), + aes(x = 1, + fill = fct_rev(fct_infreq(weather_type))) + ) + + geom_bar(position = "stack") + + coord_cartesian() + + scale_fill_discrete(name = NULL) +``` +::: + +## Transform a Coordinate System + +```{r} +#| label: coord-trans-log +#| output-location: column +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp, y = count) + ) + + geom_point() + + coord_trans(y = "log10") +``` + +## Transform a Coordinate System + +::: {layout-ncol="2"} +```{r} +#| label: trans-log-via-coord +#| fig-height: 3.6 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp, y = count, + group = day_night) + ) + + geom_point() + + geom_smooth(method = "lm") + + coord_trans(y = "log10") +``` + +::: fragment +```{r} +#| label: trans-log-via-scale +#| fig-height: 3.6 +#| code-line-numbers: "6" +ggplot( + bikes, + aes(x = temp, y = count, + group = day_night) + ) + + geom_point() + + geom_smooth(method = "lm") + + scale_y_log10() +``` +::: +::: + + +# 图形组合 + +------------------------------------------------------------------------ + +](../../img/layout/ah_patchwork.jpg){fig-align="center" fig-alt="Allison Horsts monster illustration of the patchwork extension package."} + +::: footer +::: + +------------------------------------------------------------------------ + +::: panel-tabset +### Graphic + +```{r} +#| label: patchwork-p1 +#| fig-width: 10 +#| fig-height: 5.8 +#| echo: false +theme_std <- theme_set(theme_minimal(base_size = 18)) +theme_update( + # text = element_text(family = "Pally"), + panel.grid = element_blank(), + axis.text = element_text(color = "grey50", size = 12), + axis.title = element_text(color = "grey40", face = "bold"), + axis.title.x = element_text(margin = margin(t = 12)), + axis.title.y = element_text(margin = margin(r = 12)), + axis.line = element_line(color = "grey80", size = .4), + legend.text = element_text(color = "grey50", size = 12), + plot.tag = element_text(size = 40, margin = margin(b = 15)), + plot.background = element_rect(fill = "white", color = "white") +) + +bikes_sorted <- + bikes %>% + filter(!is.na(weather_type)) %>% + group_by(weather_type) %>% + mutate(sum = sum(count)) %>% + ungroup() %>% + mutate( + weather_type = forcats::fct_reorder( + str_to_title(str_wrap(weather_type, 5)), sum + ) + ) + +p1 <- ggplot( + bikes_sorted, + aes(x = weather_type, y = count, color = weather_type) + ) + + geom_hline(yintercept = 0, color = "grey80", size = .4) + + stat_summary( + geom = "point", fun = "sum", size = 12 + ) + + stat_summary( + geom = "linerange", ymin = 0, fun.max = function(y) sum(y), + size = 2, show.legend = FALSE + ) + + coord_flip(ylim = c(0, NA), clip = "off") + + scale_y_continuous( + expand = c(0, 0), limits = c(0, 8500000), + labels = scales::comma_format(scale = .0001, suffix = "K") + ) + + scale_color_viridis_d( + option = "magma", direction = -1, begin = .1, end = .9, name = NULL, + guide = guide_legend(override.aes = list(size = 7)) + ) + + labs( + x = NULL, y = "Sum of reported bike shares", tag = "P1", + ) + + theme( + axis.line.y = element_blank(), + axis.text.y = element_text(family = "Pally", color = "grey50", face = "bold", + margin = margin(r = 15), lineheight = .9) + ) + +p1 +``` + +### Code + +```{r} +#| label: patchwork-p1 +#| eval: false +``` +::: + +------------------------------------------------------------------------ + +::: panel-tabset +### Graphic + +```{r} +#| label: patchwork-p2 +#| fig-width: 10 +#| fig-height: 5.8 +#| echo: false +p2 <- bikes_sorted %>% + filter(season == "winter", is_weekend == TRUE, day_night == "night") %>% + group_by(weather_type, .drop = FALSE) %>% + mutate(id = row_number()) %>% + ggplot( + aes(x = weather_type, y = id, color = weather_type) + ) + + geom_point(size = 4.5) + + scale_color_viridis_d( + option = "magma", direction = -1, begin = .1, end = .9, name = NULL, + guide = guide_legend(override.aes = list(size = 7)) + ) + + labs( + x = NULL, y = "Reported bike shares on\nweekend winter nights", tag = "P2", + ) + + coord_cartesian(ylim = c(.5, NA), clip = "off") + +p2 +``` + +### Code + +```{r} +#| label: patchwork-p2 +#| eval: false +``` +::: + +------------------------------------------------------------------------ + +::: panel-tabset +### Graphic + +```{r} +#| label: patchwork-p3 +#| fig-width: 10 +#| fig-height: 5.8 +#| echo: false +my_colors <- c("#cc0000", "#000080") + +p3 <- bikes %>% + group_by(week = lubridate::week(date), day_night, year) %>% + summarize(count = sum(count)) %>% + group_by(week, day_night) %>% + mutate(avg = mean(count)) %>% + ggplot(aes(x = week, y = count, group = interaction(day_night, year))) + + geom_line(color = "grey65", size = 1) + + geom_line(aes(y = avg, color = day_night), stat = "unique", size = 1.7) + + annotate( + geom = "text", label = c("Day", "Night"), color = my_colors, + x = c(5, 18), y = c(125000, 29000), size = 8, fontface = "bold", family = "Pally" + ) + + scale_x_continuous(breaks = c(1, 1:10*5)) + + scale_y_continuous(labels = scales::comma_format()) + + scale_color_manual(values = my_colors, guide = "none") + + labs( + x = "Week of the Year", y = "Reported bike shares\n(cumulative # per week)", tag = "P3", + ) + +p3 +``` + +### Code + +```{r} +#| label: patchwork-p3 +#| eval: false +``` +::: + +## {patchwork} + +```{r} +#| label: patchwork-composition +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +#| code-line-numbers: "3|2,3" +# install.packages("patchwork") +require(patchwork) +(p1 + p2) / p3 +``` + +## "Collect Guides" + +```{r} +#| label: patchwork-composition-guides +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +(p1 + p2) / p3 + plot_layout(guides = "collect") +``` + +## Apply Theming + +```{r} +#| label: patchwork-composition-guides-just +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +((p1 + p2) / p3 & theme(legend.justification = "top")) + +plot_layout(guides = "collect") +``` + +## Apply Theming + +```{r} +#| label: patchwork-composition-legend-off +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +(p1 + p2) / p3 & theme(legend.position = "none", + plot.background = element_rect(color = "black", size = 3)) +``` + +## Adjust Widths and Heights + +```{r} +#| label: patchwork-composition-heights-widths +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +#| code-line-numbers: "2" +((p1 + p2) / p3 & theme(legend.position = "none")) + + plot_layout(heights = c(.2, .1), widths = c(2, 1)) +``` + +## Use A Custom Layout + +```{r} +#| label: patchwork-composition-design +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +#| code-line-numbers: "1,2,3,4|5" +picasso <- " +AAAAAA#BBBB +CCCCCCCCC## +CCCCCCCCC##" +(p1 + p2 + p3 & theme(legend.position = "none")) + +plot_layout(design = picasso) +``` + +## Add Labels + +```{r} +#| label: patchwork-composition-labs-prep +pl1 <- p1 + labs(tag = NULL, title = "Plot One") + theme(legend.position = "none") +pl2 <- p2 + labs(tag = NULL, title = "Plot Two") + theme(legend.position = "none") +pl3 <- p3 + labs(tag = NULL, title = "Plot Three") + theme(legend.position = "none") +``` + +## Add Labels + +```{r} +#| label: patchwork-composition-labs +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +#| code-line-numbers: "2" +(pl1 + pl2) / pl3 + + plot_annotation(tag_levels = "1", + tag_prefix = "P", + title = "An overarching title for all 3 plots, placed on the very top while all other titles are sitting below the tags.") +``` + +## Add Text + +::: panel-tabset +### Graphic + +```{r} +#| label: patchwork-composition-textbox-prep +#| echo: false +#| fig-width: 9 +#| fig-height: 4.5 +#| fig-align: "center" +text <- tibble::tibble( + x = 0, y = 0, label = "Lorem ipsum dolor sit amet, **consectetur adipiscing elit**, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation <b style='color:#000080;'>ullamco laboris nisi</b> ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat <b style='color:#cc0000;'>cupidatat non proident</b>, sunt in culpa qui officia deserunt mollit anim id est laborum." +) +pt <- ggplot(text, aes(x = x, y = y)) + + ggtext::geom_textbox( + aes(label = label), + box.color = NA, width = unit(23, "lines"), + color = "grey40", size = 6.5, lineheight = 1.4 + ) + + coord_cartesian(expand = FALSE, clip = "off") + + theme_void() +pt +``` + +### Code + +```{r} +#| label: patchwork-composition-textbox-prep +#| eval: false +``` +::: + +## Add Text + +```{r} +#| label: patchwork-composition-textbox +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +(p1 + pt) / p3 +``` + +## Add Inset Plots + +```{r} +#| label: patchwork-composition-inset-1 +#| fig-width: 12 +#| fig-height: 7 +#| fig-align: "center" +pl1 + inset_element(pl2, + l = .6, b = .1, r = 1, t = .6) +``` + +## Add Inset Plots + +```{r} +#| label: patchwork-composition-inset-2 +#| fig-width: 12 +#| fig-height: 7 +#| fig-align: "center" +pl1 + inset_element(pl2, + l = .6, b = 0, r = 1, t = .5, align_to = 'full') +``` + +## Add Inset Plots + +```{r} +#| label: patchwork-composition-inset-3 +#| fig-width: 15 +#| fig-height: 12 +#| fig-align: "center" +(pl1 + inset_element(pl2, + l = .6, b = .1, r = 1, t = .6) + pt) / pl3 +``` + + +## 练习 + +```{r} +library(palmerpenguins) +library(ggthemes) +penguins +``` + +## 效果 + +```{r} +#| echo: false +#| warning: false +#| fig-width: 8 +#| fig-height: 5 +penguins |> + ggplot(aes(x = flipper_length_mm, y = body_mass_g)) + +geom_point(aes(color = species, shape = species)) + +geom_smooth(method = "lm") + +labs( + title = "Body mass and flipper length", + subtitle = "Dimensions for Adelie, Chinstrap, and Gentoo Penguins", + x = "Flipper length (mm)", + y = "Body mass (g)", + color = "Species", + shape = "Species" +) + +scale_color_colorblind() +``` + + +```{r} +#| include: false +#| fig-alt: | +#| A blank, gray plot area. + +ggplot(data = penguins) +``` + + +```{r} +#| include: false +ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g) +) +``` + + +```{r} +#| include: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. The plot +#| displays a positive, linear, and relatively strong relationship between +#| these two variables. + +ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g) +) + + geom_point() +``` + + +```{r} +#| include: false +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. The plot +#| displays a positive, fairly linear, and relatively strong relationship +#| between these two variables. Species (Adelie, Chinstrap, and Gentoo) +#| are represented with different colors. + +ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g, color = species) +) + + geom_point() +``` + + +```{r} +#| include: false +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. Overlaid +#| on the scatterplot are three smooth curves displaying the +#| relationship between these variables for each species (Adelie, +#| Chinstrap, and Gentoo). Different penguin species are plotted in +#| different colors for the points and the smooth curves. + +ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g, color = species) +) + + geom_point() + + geom_smooth(method = "lm") +``` + + +```{r} +#| include: false +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. Overlaid +#| on the scatterplot is a single line of best fit displaying the +#| relationship between these variables for each species (Adelie, +#| Chinstrap, and Gentoo). Different penguin species are plotted in +#| different colors for the points only. + +ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g) +) + + geom_point(mapping = aes(color = species)) + + geom_smooth(method = "lm") +``` + + +```{r} +#| include: false +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. Overlaid +#| on the scatterplot is a single line of best fit displaying the +#| relationship between these variables for each species (Adelie, +#| Chinstrap, and Gentoo). Different penguin species are plotted in +#| different colors and shapes for the points only. + +ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g) +) + + geom_point(mapping = aes(color = species, shape = species)) + + geom_smooth(method = "lm") +``` + +## 练习 + +:::: {.panel-tabset} + +### Code + +```{r} +p <- ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g) +) + + geom_point(aes(color = species, shape = species)) + + geom_smooth(method = "lm") + + labs( + title = "Body mass and flipper length", + subtitle = "Dimensions for Adelie, Chinstrap, and Gentoo Penguins", + x = "Flipper length (mm)", y = "Body mass (g)", + color = "Species", shape = "Species" + ) + + scale_color_colorblind() +``` + + + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + +:::: {.panel-tabset} + +### Code + + +```{r} +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins, colored +#| by bill depth. A smooth curve of the relationship between body mass +#| and flipper length is overlaid. The relationship is positive, +#| fairly linear, and moderately strong. +p <- ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g)) + + geom_point(aes(color = bill_depth_mm)) + + geom_smooth() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + +:::: {.panel-tabset} + +### Code + +```{r} +p <- ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g, color = island) +) + + geom_point() + + geom_smooth(se = FALSE) +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 分层展示 + +:::: {.panel-tabset} + +### Code + +```{r} +p <- ggplot( + data = penguins, + mapping = aes(x = flipper_length_mm, y = body_mass_g) +) + + geom_point() + + geom_smooth() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 柱状图 + +:::: {.panel-tabset} + +### Code + +```{r} +#| fig-alt: | +#| A bar chart of frequencies of species of penguins: Adelie +#| (approximately 150), Chinstrap (approximately 90), Gentoo +#| (approximately 125). + +p <- ggplot(penguins, aes(x = species)) + + geom_bar() +``` +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 柱状图 + +:::: {.panel-tabset} + +### Code + +```{r} +#| fig-alt: | +#| A bar chart of frequencies of species of penguins, where the bars are +#| ordered in decreasing order of their heights (frequencies): Adelie +#| (approximately 150), Gentoo (approximately 125), Chinstrap +#| (approximately 90). + +p <- ggplot(penguins, aes(x = fct_infreq(species))) + + geom_bar() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + + +## 直方图 + + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| fig-alt: | +#| A histogram of body masses of penguins. The distribution is unimodal +#| and right skewed, ranging between approximately 2500 to 6500 grams. + +p <- ggplot(penguins, aes(x = body_mass_g)) + + geom_histogram(binwidth = 200) +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 直方图 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| layout-ncol: 2 +#| fig-width: 3 +#| fig-alt: | +#| Two histograms of body masses of penguins, one with binwidth of 20 +#| (left) and one with binwidth of 2000 (right). The histogram with binwidth +#| of 20 shows lots of ups and downs in the heights of the bins, creating a +#| jagged outline. The histogram with binwidth of 2000 shows only three bins. + +p1 <- ggplot(penguins, aes(x = body_mass_g)) + + geom_histogram(binwidth = 20) +p2 <- ggplot(penguins, aes(x = body_mass_g)) + + geom_histogram(binwidth = 2000) +p <- p1 + p2 +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 10 +#| fig-height: 5 +p +``` + +:::: + +## 密度图 + +:::: {.panel-tabset} + +### Code + +```{r} +#| fig-alt: | +#| A density plot of body masses of penguins. The distribution is unimodal +#| and right skewed, ranging between approximately 2500 to 6500 grams. + +p <- ggplot(penguins, aes(x = body_mass_g)) + + geom_density() +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + + +## 箱图 + + +:::: {.panel-tabset} + +### Code + + +```{r} +#| warning: false +#| fig-alt: | +#| Side-by-side box plots of distributions of body masses of Adelie, +#| Chinstrap, and Gentoo penguins. The distribution of Adelie and +#| Chinstrap penguins' body masses appear to be symmetric with +#| medians around 3750 grams. The median body mass of Gentoo penguins +#| is much higher, around 5000 grams, and the distribution of the +#| body masses of these penguins appears to be somewhat right skewed. + +p <- ggplot(penguins, + aes(x = species, y = body_mass_g)) + + geom_boxplot() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 分组 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| fig-alt: | +#| A density plot of body masses of penguins by species of penguins. Each +#| species (Adelie, Chinstrap, and Gentoo) is represented with different +#| colored outlines for the density curves. + +p <- ggplot(penguins, + aes(x = body_mass_g, color = species)) + + geom_density(linewidth = 0.75) +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 分组 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| fig-alt: | +#| A density plot of body masses of penguins by species of penguins. Each +#| species (Adelie, Chinstrap, and Gentoo) is represented in different +#| colored outlines for the density curves. The density curves are also +#| filled with the same colors, with some transparency added. + +p <- ggplot(penguins, + aes(x = body_mass_g, color = species, fill = species)) + + geom_density(alpha = 0.5) +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + + +## 分组 + +:::: {.panel-tabset} + +### Code + +```{r} +#| fig-alt: | +#| Bar plots of penguin species by island (Biscoe, Dream, and Torgersen) +p <- ggplot(penguins, + aes(x = island, fill = species)) + + geom_bar() +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + + +## 分组 + +:::: {.panel-tabset} + +### Code + +```{r} +#| fig-alt: | +#| Bar plots of penguin species by island (Biscoe, Dream, and Torgersen) +#| the bars are scaled to the same height, making it a relative frequencies +#| plot + +p <- ggplot(penguins, + aes(x = island, fill = species)) + + geom_bar(position = "fill") +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 分组 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. The plot +#| displays a positive, linear, relatively strong relationship between +#| these two variables. + +p <- ggplot(penguins, + aes(x = flipper_length_mm, y = body_mass_g)) + + geom_point() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 分组 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. The plot +#| displays a positive, linear, relatively strong relationship between +#| these two variables. The points are colored based on the species of the +#| penguins and the shapes of the points represent islands (round points are +#| Biscoe island, triangles are Dream island, and squared are Torgersen +#| island). The plot is very busy and it's difficult to distinguish the shapes +#| of the points. + +p <- ggplot(penguins, + aes(x = flipper_length_mm, y = body_mass_g)) + + geom_point(aes(color = species, shape = island)) +``` +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + + +## 分面 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false +#| fig-width: 8 +#| fig-asp: 0.33 +#| fig-alt: | +#| A scatterplot of body mass vs. flipper length of penguins. The shapes and +#| colors of points represent species. Penguins from each island are on a +#| separate facet. Within each facet, the relationship between body mass and +#| flipper length is positive, linear, relatively strong. + +p <- ggplot(penguins, + aes(x = flipper_length_mm, y = body_mass_g)) + + geom_point(aes(color = species, shape = species)) + + facet_wrap(~island) +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 分面 + +:::: {.panel-tabset} + +### Code + +```{r} +#| warning: false + +p <- ggplot( + data = penguins, + mapping = aes( + x = bill_length_mm, y = bill_depth_mm, + color = species, shape = species + ) +) + + geom_point() + + labs(color = "Species") +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + +:::: {.panel-tabset} + +### Code + +```{r} +#| layout-ncol: 2 + +p1 <- ggplot(penguins, aes(x = island, fill = species)) + + geom_bar(position = "fill") +p2 <- ggplot(penguins, aes(x = species, fill = island)) + + geom_bar(position = "fill") +p <- p1 + p2 +``` + + +### Graphic + +```{r} +#| echo: false +#| fig-width: 10 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + +:::: {.panel-tabset} + +### Code + +```{r} +p <- ggplot(penguins, + aes(x = flipper_length_mm, y = body_mass_g)) + + geom_point() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + + +:::: {.panel-tabset} + +### Code + +```{r} +p <- ggplot(mpg, aes(x = class)) + +geom_bar() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + +:::: {.panel-tabset} + +### Code + + +```{r} +p <- ggplot(mpg, aes(x = cty, y = hwy)) + +geom_point() +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 练习 + +:::: {.panel-tabset} + +### Code + +```{r} +p <- ggplot(data = mpg) + +geom_point(mapping = aes(x = displ, y = hwy)) +``` + +### Graphic + +```{r} +#| echo: false +#| fig-width: 8 +#| fig-height: 5 +p +``` + +:::: + +## 欢迎讨论!{.center} + + +`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drc.drwater.net/course/public/RWEP/PUB/SD/")` + diff --git a/SD/4.1_datavisualize/mpg-plot.png b/SD/4.1_datavisualize/mpg-plot.png new file mode 100644 index 0000000..de3439b Binary files /dev/null and b/SD/4.1_datavisualize/mpg-plot.png differ diff --git a/SD/4.2_实践部分/_extensions b/SD/4.2_实践部分/_extensions new file mode 120000 index 0000000..74119e3 --- /dev/null +++ b/SD/4.2_实践部分/_extensions @@ -0,0 +1 @@ +../../_extensions \ No newline at end of file diff --git a/SD/4.2_实践部分/index.qmd b/SD/4.2_实践部分/index.qmd new file mode 100644 index 0000000..f07e128 --- /dev/null +++ b/SD/4.2_实践部分/index.qmd @@ -0,0 +1,103 @@ +--- +title: "数据前处理+ggplot2画图实践" +subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution +author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 +date: today +lang: zh +format: + revealjs: + theme: dark + slide-number: true + chalkboard: + buttons: true + preview-links: auto + lang: zh + toc: true + toc-depth: 1 + toc-title: 大纲 + logo: ./_extensions/inst/img/ucaslogo.png + css: ./_extensions/inst/css/revealjs.css + pointer: + key: "p" + color: "#32cd32" + pointerSize: 18 +revealjs-plugins: + - pointer +filters: + - d2 +--- + + +```{r} +#| echo: false +knitr::opts_chunk$set(echo = TRUE) +source("../../coding/_common.R") +library(tidyverse) +``` + + +## 数据说明 + +```{r} +mpg +``` + +## 完成图1 + + +```{r} +#| echo: false +mpg |> +ggplot(aes(x = displ, y = hwy, color = class)) + + geom_point() + +``` + +## 完成图2 + + +```{r} +#| echo: false +ggplot(mpg, aes(x = displ, y = hwy, color = drv)) + + geom_point() + + geom_smooth(aes(linetype = drv)) +``` + +## 完成图3 + + +```{r} +#| echo: false +ggplot(mpg, aes(x = displ, y = hwy)) + + geom_point(aes(color = class)) + + geom_smooth() +``` + +## 完成图4 + + +```{r} +#| echo: false +ggplot(mpg, aes(x = displ, y = hwy)) + + geom_point() + + facet_wrap(~cyl) + +``` + +## 完成图5 + + +```{r} +#| echo: false +ggplot(mpg, aes(x = drv, fill = class)) + +geom_bar(position = "fill") +``` + + +## 综合实践:三维荧光数据处理 + + +## 欢迎讨论!{.center} + + +`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drc.drwater.net/course/public/RWEP/PUB/SD/")` diff --git a/SD/5.1_model/_extensions b/SD/5.1_model/_extensions new file mode 120000 index 0000000..74119e3 --- /dev/null +++ b/SD/5.1_model/_extensions @@ -0,0 +1 @@ +../../_extensions \ No newline at end of file diff --git a/SD/5.1_model/images/10-Fold-CV.svg b/SD/5.1_model/images/10-Fold-CV.svg new file mode 100644 index 0000000..5be8f3f --- /dev/null +++ b/SD/5.1_model/images/10-Fold-CV.svg @@ -0,0 +1,158 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="470.5 -706.5 869.75 527.75" width="869.75" height="527.75"> + <defs> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="383.525" y="-759.275"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <g id="Canvas_1" fill="none" stroke-opacity="1" stroke="none" stroke-dasharray="none" fill-opacity="1"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Graphic_3492" filter="url(#Shadow)"> + <ellipse cx="962.5" cy="-646.25" rx="57.7500922788345" ry="58.7500938767363" fill="white"/> + <ellipse cx="962.5" cy="-646.25" rx="57.7500922788345" ry="58.7500938767363" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(921.3 -655.474)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="13.496" y="15">All Data</tspan> + </text> + </g> + <g id="Graphic_3491" filter="url(#Shadow)"> + <path d="M 898.75 -534.5 L 957.0022 -493.9047 L 934.7519 -428.2203 L 862.7481 -428.2203 L 840.4978 -493.9047 Z" fill="#ffeabb"/> + <path d="M 898.75 -534.5 L 957.0022 -493.9047 L 934.7519 -428.2203 L 862.7481 -428.2203 L 840.4978 -493.9047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(854.75 -479.099)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.144" y="15">Training</tspan> + </text> + </g> + <g id="Graphic_3490" filter="url(#Shadow)"> + <path d="M 1213.25 -534.5 L 1271.5022 -493.9047 L 1249.2519 -428.2203 L 1177.2481 -428.2203 L 1154.9978 -493.9047 Z" fill="#e5e6ff"/> + <path d="M 1213.25 -534.5 L 1271.5022 -493.9047 L 1249.2519 -428.2203 L 1177.2481 -428.2203 L 1154.9978 -493.9047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1169.25 -479.099)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.664" y="15">Testing</tspan> + </text> + </g> + <g id="Line_3489"> + <line x1="941.3568" y1="-591.56304" x2="918.5044" y2="-532.45516" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3488"> + <line x1="1011.0099" y1="-614.35054" x2="1165.7454" y2="-512.5985" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_3487" filter="url(#Shadow)"> + <ellipse cx="670.75" cy="-219.75" rx="61.2500978714911" ry="35.5000567255173" fill="#e5e6ff"/> + <ellipse cx="670.75" cy="-219.75" rx="61.2500978714911" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(626.75 -228.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x=".432" y="15">Assessment</tspan> + </text> + </g> + <g id="Graphic_3486" filter="url(#Shadow)"> + <ellipse cx="538" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" fill="#ffeabb"/> + <ellipse cx="538" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(491.8 -228.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.72" y="15">Analysis</tspan> + </text> + </g> + <g id="Graphic_3485" filter="url(#Shadow)"> + <rect x="536.25" y="-364" width="139" height="56.5" fill="white"/> + <rect x="536.25" y="-364" width="139" height="56.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(541.25 -344.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.124" y="15">Fold 1</tspan> + </text> + </g> + <g id="Line_3484"> + <line x1="852.5284" y1="-458.3897" x2="671.46085" y2="-368.40586" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3483"> + <line x1="589.25054" y1="-307.5" x2="562.72166" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3482"> + <line x1="621.57974" y1="-307.5" x2="646.9871" y2="-262.1577" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_3481" filter="url(#Shadow)"> + <ellipse cx="968.75" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" fill="#e5e6ff"/> + <ellipse cx="968.75" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(922.55 -228.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="2.6320008" y="15">Assessment</tspan> + </text> + </g> + <g id="Graphic_3480" filter="url(#Shadow)"> + <ellipse cx="833.25" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" fill="#ffeabb"/> + <ellipse cx="833.25" cy="-219.75" rx="64.0001022657215" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(787.05 -228.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.72" y="15">Analysis</tspan> + </text> + </g> + <g id="Graphic_3479" filter="url(#Shadow)"> + <rect x="831.5" y="-364" width="139" height="56.5" fill="white"/> + <rect x="831.5" y="-364" width="139" height="56.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(836.5 -344.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.124" y="15">Fold 2</tspan> + </text> + </g> + <g id="Line_3478"> + <line x1="899.5711" y1="-428.2203" x2="900.4105" y2="-373.8988" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3477"> + <line x1="884.5005" y1="-307.5" x2="857.9717" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3476"> + <line x1="917.4995" y1="-307.5" x2="944.0283" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_3475" filter="url(#Shadow)"> + <ellipse cx="1272.75" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" fill="#e5e6ff"/> + <ellipse cx="1272.75" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1226.55 -228.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="2.6320008" y="15">Assessment</tspan> + </text> + </g> + <g id="Graphic_3474" filter="url(#Shadow)"> + <ellipse cx="1137.25" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" fill="#ffeabb"/> + <ellipse cx="1137.25" cy="-219.75" rx="64.0001022657214" ry="35.5000567255173" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1091.05 -228.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.72" y="15">Analysis</tspan> + </text> + </g> + <g id="Graphic_3473" filter="url(#Shadow)"> + <rect x="1135.5" y="-364" width="139" height="56.5" fill="white"/> + <rect x="1135.5" y="-364" width="139" height="56.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1140.5 -344.974)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="37.676" y="15">Fold 10</tspan> + </text> + </g> + <g id="Line_3472"> + <line x1="945.2616" y1="-459.24567" x2="1136.6432" y2="-368.25103" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3471"> + <line x1="1188.5005" y1="-307.5" x2="1161.9717" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3470"> + <line x1="1221.4995" y1="-307.5" x2="1248.0283" y2="-262.07786" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Group_3466"> + <g id="Graphic_3469"> + <ellipse cx="1030.25" cy="-335.75" rx="4.75000759003425" ry="4.00000639160761" fill="black"/> + <ellipse cx="1030.25" cy="-335.75" rx="4.75000759003425" ry="4.00000639160761" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_3468"> + <ellipse cx="1048.75" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" fill="black"/> + <ellipse cx="1048.75" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_3467"> + <ellipse cx="1067.25" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" fill="black"/> + <ellipse cx="1067.25" cy="-335.75" rx="4.75000759003419" ry="4.00000639160761" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/Ac_2tads.jpg b/SD/5.1_model/images/Ac_2tads.jpg new file mode 100644 index 0000000..cacbfc5 Binary files /dev/null and b/SD/5.1_model/images/Ac_2tads.jpg differ diff --git a/SD/5.1_model/images/Hatching-process.jpg b/SD/5.1_model/images/Hatching-process.jpg new file mode 100644 index 0000000..15a8821 Binary files /dev/null and b/SD/5.1_model/images/Hatching-process.jpg differ diff --git a/SD/5.1_model/images/bad_workflow.png b/SD/5.1_model/images/bad_workflow.png new file mode 100644 index 0000000..f4fff10 Binary files /dev/null and b/SD/5.1_model/images/bad_workflow.png differ diff --git a/SD/5.1_model/images/cap.png b/SD/5.1_model/images/cap.png new file mode 100644 index 0000000..658645b Binary files /dev/null and b/SD/5.1_model/images/cap.png differ diff --git a/SD/5.1_model/images/confusion-matrix-accuracy.png b/SD/5.1_model/images/confusion-matrix-accuracy.png new file mode 100644 index 0000000..9cd48ae Binary files /dev/null and b/SD/5.1_model/images/confusion-matrix-accuracy.png differ diff --git a/SD/5.1_model/images/confusion-matrix-sensitivity.png b/SD/5.1_model/images/confusion-matrix-sensitivity.png new file mode 100644 index 0000000..6bb0fd3 Binary files /dev/null and b/SD/5.1_model/images/confusion-matrix-sensitivity.png differ diff --git a/SD/5.1_model/images/confusion-matrix-specificity.png b/SD/5.1_model/images/confusion-matrix-specificity.png new file mode 100644 index 0000000..bef51a2 Binary files /dev/null and b/SD/5.1_model/images/confusion-matrix-specificity.png differ diff --git a/SD/5.1_model/images/confusion-matrix.png b/SD/5.1_model/images/confusion-matrix.png new file mode 100644 index 0000000..1a2771c Binary files /dev/null and b/SD/5.1_model/images/confusion-matrix.png differ diff --git a/SD/5.1_model/images/fe_venn.svg b/SD/5.1_model/images/fe_venn.svg new file mode 100644 index 0000000..b32e41a --- /dev/null +++ b/SD/5.1_model/images/fe_venn.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg version="1.1" xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-133 803.5 723 483.016" width="723" height="483.016"> + <defs> + <font-face font-family="Helvetica Neue" font-size="18" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400"> + <font-face-src> + <font-face-name name="HelveticaNeue"/> + </font-face-src> + </font-face> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-9 -4 10 8" markerWidth="10" markerHeight="8" color="#941100" opacity="0"> + <g> + <path d="M -8 0 L 0 3 L 0 -3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <metadata> Produced by OmniGraffle 7.18.5\n2021-06-10 19:49:00 +0000</metadata> + <g id="Canvas_1" fill-opacity="1" fill="none" stroke="none" stroke-opacity="1" stroke-dasharray="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Graphic_27"> + <circle cx="218.25" cy="993.75" r="133.750213719379" fill="red" fill-opacity=".33470676"/> + </g> + <g id="Graphic_26"> + <ellipse cx="390.75" cy="993.75" rx="83.2501330253328" ry="82.250131427431" fill="#4f4af8" fill-opacity=".3433219"/> + </g> + <g id="Graphic_25"> + <text transform="translate(382.5 898.5)" fill="#005493"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="82.476" y="17">Transformation</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.854" y="38.504">Normalization </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.152" y="60.007996">Re-formatting</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="98.82" y="81.51199">Re-encoding</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="116.46" y="103.01599">Imputation</tspan> + </text> + </g> + <g id="Graphic_24"> + <text transform="translate(-128 948.8653)" fill="#005493" fill-opacity="0"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="6.075" y="17">Steps necessary for the </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="38.061" y="38.504">data to be used </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="60.894" y="60.007996">effectively</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="19.557" y="103.51199">(Determined by data </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="68.751" y="125.01599">context)</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="6.057" y="168.51999">(Driven by the modeling </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="65.736" y="190.02399">problem)</tspan> + </text> + </g> + <g id="Graphic_23"> + <text transform="translate(119 808.5)" fill="#b1001c"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="70.911" y="17">Feature </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="53.748" y="38.504">Engineering</tspan> + </text> + </g> + <g id="Line_22"> + <path d="M 527.60516 1036.8936 C 526.91756 1048.8252 525.0482 1069.8035 520 1090 C 512.35076 1120.6026 501 1135.02 501 1135.02" marker-start="url(#FilledArrow_Marker)" stroke="#941100" stroke-opacity="0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_21"> + <text transform="translate(331.5 1151.5)" fill="#005493" fill-opacity="0"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x=".562" y="17">Steps necessary for the model </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="74.938" y="38.504">to work well</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="4.558" y="82.008">(Independent of data context)</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" fill-opacity="0" x="37.894" y="125.512">(Driven by the model)</tspan> + </text> + </g> + <g id="Line_20"> + <path d="M 131.69865 825.2074 C 111.46518 823.5015 64.19503 822.835 30 848.3453 C -14.62874 881.6393 -16 943.8653 -16 943.8653" marker-start="url(#FilledArrow_Marker)" stroke="#941100" stroke-opacity="0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/fe_venn_info.svg b/SD/5.1_model/images/fe_venn_info.svg new file mode 100644 index 0000000..2b73585 --- /dev/null +++ b/SD/5.1_model/images/fe_venn_info.svg @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg version="1.1" xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-22 148 723 483.016" width="723" height="483.016"> + <defs> + <font-face font-family="Helvetica Neue" font-size="18" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400"> + <font-face-src> + <font-face-name name="HelveticaNeue"/> + </font-face-src> + </font-face> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-9 -4 10 8" markerWidth="10" markerHeight="8" color="#011893"> + <g> + <path d="M -8 0 L 0 3 L 0 -3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker_2" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-9 -4 10 8" markerWidth="10" markerHeight="8" color="#941100"> + <g> + <path d="M -8 0 L 0 3 L 0 -3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <metadata> Produced by OmniGraffle 7.18.5\n2021-06-10 19:47:58 +0000</metadata> + <g id="Canvas_1" fill-opacity="1" fill="none" stroke="none" stroke-opacity="1" stroke-dasharray="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Graphic_2"> + <circle cx="329.25" cy="338.25" r="133.750213719379" fill="red" fill-opacity=".33470676"/> + </g> + <g id="Graphic_3"> + <ellipse cx="501.75" cy="338.25" rx="83.2501330253329" ry="82.250131427431" fill="#4f4af8" fill-opacity=".3433219"/> + </g> + <g id="Graphic_4"> + <text transform="translate(493.5 243)" fill="#005493"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="82.476" y="17">Transformation</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.854" y="38.504">Normalization </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="91.152" y="60.007996">Re-formatting</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="98.82" y="81.51199">Re-encoding</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="116.46" y="103.01599">Imputation</tspan> + </text> + </g> + <g id="Graphic_5"> + <text transform="translate(-17 293.36526)" fill="#b1001c"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="6.075" y="17">Steps necessary for the </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="38.061" y="38.504">data to be used </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="60.894" y="60.007996">effectively</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="19.557" y="103.51199">(Determined by data </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="68.751" y="125.01599">context)</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="6.057" y="168.51999">(Driven by the modeling </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="65.736" y="190.02399">problem)</tspan> + </text> + </g> + <g id="Graphic_6"> + <text transform="translate(230 153)" fill="#b1001c"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="70.911" y="17">Feature </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#b1001c" x="53.748" y="38.504">Engineering</tspan> + </text> + </g> + <g id="Line_9"> + <path d="M 638.60516 381.39365 C 637.91756 393.32524 636.0482 414.3035 631 434.5 C 623.3508 465.1026 612 479.52 612 479.52" marker-start="url(#FilledArrow_Marker)" stroke="#011893" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_10"> + <text transform="translate(442.5 496)" fill="#005493"> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x=".562" y="17">Steps necessary for the model </tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="74.938" y="38.504">to work well</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="4.558" y="82.008">(Independent of data context)</tspan> + <tspan font-family="Helvetica Neue" font-size="18" font-weight="400" fill="#005493" x="37.894" y="125.512">(Driven by the model)</tspan> + </text> + </g> + <g id="Line_11"> + <path d="M 242.69865 169.70744 C 222.46518 168.0015 175.19503 167.33504 141 192.84527 C 96.37126 226.13927 95 288.36526 95 288.36526" marker-start="url(#FilledArrow_Marker_2)" stroke="#941100" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/good_workflow.png b/SD/5.1_model/images/good_workflow.png new file mode 100644 index 0000000..56a39c1 Binary files /dev/null and b/SD/5.1_model/images/good_workflow.png differ diff --git a/SD/5.1_model/images/grid_points.svg b/SD/5.1_model/images/grid_points.svg new file mode 100644 index 0000000..ea06c10 --- /dev/null +++ b/SD/5.1_model/images/grid_points.svg @@ -0,0 +1,80 @@ +<?xml version='1.0' encoding='UTF-8' ?> +<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='svglite' width='439.20pt' height='306.00pt' viewBox='0 0 439.20 306.00'> +<defs> + <style type='text/css'><![CDATA[ + .svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle { + fill: none; + stroke: #000000; + stroke-linecap: round; + stroke-linejoin: round; + stroke-miterlimit: 10.00; + } + .svglite text { + white-space: pre; + } + ]]></style> +</defs> +<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/> +<defs> + <clipPath id='cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA='> + <rect x='0.00' y='0.00' width='439.20' height='306.00' /> + </clipPath> +</defs> +<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'> +<rect x='0.00' y='0.00' width='439.20' height='306.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' /> +</g> +<defs> + <clipPath id='cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3'> + <rect x='33.27' y='5.48' width='400.45' height='268.79' /> + </clipPath> +</defs> +<g clip-path='url(#cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3)'> +<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' /> +<polyline points='33.27,238.58 433.72,238.58 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,180.73 433.72,180.73 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,122.88 433.72,122.88 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,65.03 433.72,65.03 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,7.18 433.72,7.18 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='51.47,274.27 51.47,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='190.15,274.27 190.15,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='328.84,274.27 328.84,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,267.50 433.72,267.50 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,209.65 433.72,209.65 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,151.80 433.72,151.80 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,93.95 433.72,93.95 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,36.10 433.72,36.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='120.81,274.27 120.81,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='259.50,274.27 259.50,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='398.18,274.27 398.18,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='51.47,17.70 55.15,17.73 58.82,17.77 62.50,17.81 66.18,17.86 69.86,17.92 73.53,17.98 77.21,18.05 80.89,18.13 84.57,18.22 88.24,18.32 91.92,18.44 95.60,18.57 99.27,18.72 102.95,18.88 106.63,19.07 110.31,19.28 113.98,19.52 117.66,19.79 121.34,20.10 125.01,20.44 128.69,20.83 132.37,21.26 136.05,21.76 139.72,22.31 143.40,22.93 147.08,23.64 150.76,24.43 154.43,25.33 158.11,26.33 161.79,27.47 165.46,28.74 169.14,30.17 172.82,31.77 176.50,33.56 180.17,35.58 183.85,37.84 187.53,40.36 191.21,43.18 194.88,46.32 198.56,49.81 202.24,53.71 205.91,58.01 209.59,62.78 213.27,68.07 216.95,73.84 220.62,80.20 224.30,87.14 227.98,94.67 231.66,102.77 235.33,111.48 239.01,120.72 242.69,130.38 246.36,140.47 250.04,150.90 253.72,161.49 257.40,172.20 261.07,182.77 264.75,193.28 268.43,203.02 272.11,212.26 275.78,220.71 279.46,228.10 283.14,234.47 286.81,240.00 290.49,244.46 294.17,248.31 297.85,251.48 301.52,253.47 305.20,255.43 308.88,257.08 312.55,257.94 316.23,258.86 319.91,259.68 323.59,260.31 327.26,260.03 330.94,260.84 334.62,260.93 338.30,262.05 341.97,260.92 345.65,261.35 349.33,261.26 353.00,261.43 356.68,260.81 360.36,260.29 364.04,259.27 367.71,257.85 371.39,257.15 375.07,254.18 378.75,252.51 382.42,250.51 386.10,247.01 389.78,239.75 393.45,235.27 397.13,229.47 400.81,218.83 404.49,210.20 408.16,197.55 411.84,175.34 415.52,130.52 ' style='stroke-width: 3.20; stroke: #0B84A5; stroke-opacity: 0.50; stroke-linecap: butt;' /> +<circle cx='51.47' cy='17.70' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='103.48' cy='18.91' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='155.48' cy='25.60' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='207.49' cy='60.00' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='259.50' cy='178.23' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='311.50' cy='257.85' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='363.51' cy='259.22' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='415.52' cy='130.52' r='4.62' style='stroke-width: 0.71;' /> +<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: #333333;' /> +</g> +<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'> +<text x='28.34' y='270.66' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>10</text> +<text x='28.34' y='212.81' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>20</text> +<text x='28.34' y='154.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>30</text> +<text x='28.34' y='97.11' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>40</text> +<text x='28.34' y='39.26' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>50</text> +<polyline points='30.53,267.50 33.27,267.50 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,209.65 33.27,209.65 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,151.80 33.27,151.80 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,93.95 33.27,93.95 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,36.10 33.27,36.10 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='120.81,277.01 120.81,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='259.50,277.01 259.50,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='398.18,277.01 398.18,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<text x='120.81' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-04</text> +<text x='259.50' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-02</text> +<text x='398.18' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='24.72px' lengthAdjust='spacingAndGlyphs'>1e+00</text> +<text x='233.49' y='298.09' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='69.11px' lengthAdjust='spacingAndGlyphs'>Learning Rate</text> +<text transform='translate(13.37,139.87) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='24.45px' lengthAdjust='spacingAndGlyphs'>Error</text> +</g> +</svg> diff --git a/SD/5.1_model/images/initial-split.svg b/SD/5.1_model/images/initial-split.svg new file mode 100644 index 0000000..8426ec9 --- /dev/null +++ b/SD/5.1_model/images/initial-split.svg @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-168.5 -1222.5 258.5 292.5" width="258.5" height="292.5"> + <defs> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="-194.35" y="-1251.75"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <g id="Canvas_1" fill="none" stroke-opacity="1" stroke="none" stroke-dasharray="none" fill-opacity="1"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Graphic_3465" filter="url(#Shadow)"> + <ellipse cx="-44.75" cy="-1162.25" rx="57.7500922788345" ry="58.7500938767365" fill="white"/> + <ellipse cx="-44.75" cy="-1162.25" rx="57.7500922788345" ry="58.7500938767365" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-85.95 -1171.474)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="13.496" y="15">All Data</tspan> + </text> + </g> + <g id="Graphic_3464" filter="url(#Shadow)"> + <path d="M -103.75 -1053 L -45.49782 -1012.4047 L -67.74811 -946.7203 L -139.7519 -946.7203 L -162.00218 -1012.4047 Z" fill="#ffeabb"/> + <path d="M -103.75 -1053 L -45.49782 -1012.4047 L -67.74811 -946.7203 L -139.7519 -946.7203 L -162.00218 -1012.4047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-147.75 -997.599)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="16.144" y="15">Training</tspan> + </text> + </g> + <g id="Graphic_3463" filter="url(#Shadow)"> + <path d="M 25.25 -1053 L 83.50218 -1012.4047 L 61.25189 -946.7203 L -10.751893 -946.7203 L -33.00218 -1012.4047 Z" fill="#e5e6ff"/> + <path d="M 25.25 -1053 L 83.50218 -1012.4047 L 61.25189 -946.7203 L -10.751893 -946.7203 L -33.00218 -1012.4047 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-18.75 -997.599)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.664" y="15">Testing</tspan> + </text> + </g> + <g id="Line_3462"> + <line x1="-64.1842" y1="-1106.912" x2="-83.89393" y2="-1050.7893" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_3461"> + <line x1="-22.20604" y1="-1108.1445" x2="2.4716575" y2="-1048.918" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/ml_illustration.jpg b/SD/5.1_model/images/ml_illustration.jpg new file mode 100644 index 0000000..490632c Binary files /dev/null and b/SD/5.1_model/images/ml_illustration.jpg differ diff --git a/SD/5.1_model/images/model-optimization.svg b/SD/5.1_model/images/model-optimization.svg new file mode 100644 index 0000000..f690500 --- /dev/null +++ b/SD/5.1_model/images/model-optimization.svg @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="486.47526 181.5 960.5495 456.00105" width="960.5495" height="456.00105"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" fill="none" stroke-opacity="1"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Graphic_33"> + <rect x="486.97526" y="182" width="959.5495" height="455.00105" fill="#ffeabb" fill-opacity=".20827085"/> + <rect x="486.97526" y="182" width="959.5495" height="455.00105" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Group_27"> + <g id="Line_32"> + <path d="M 865.3143 395.9143 C 865.3143 395.9143 879.4107 382.0051 901.2502 382.16737 C 914.2004 382.2636 926.2621 387.2807 933.9356 391.34896" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_31"> + <path d="M 949.2982 406.6421 C 949.2982 406.6421 961.8225 421.95014 959.3763 443.39734 C 957.9277 456.0981 951.6326 467.41505 946.739 474.53314" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_30"> + <path d="M 932.483 489.43703 C 932.483 489.43703 915.7683 500.14596 894.4402 495.5 C 881.8016 492.7469 871.0648 485.3691 864.4139 479.81436" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_29"> + <path d="M 854.5534 470.23047 C 854.5534 470.23047 842.0291 454.92243 844.4753 433.4752 C 845.9238 420.77445 852.219 409.4575 857.1125 402.3394" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_28"/> + </g> + <g id="Graphic_26"> + <rect x="1228.9753" y="396.625" width="159.11903" height="92.25" fill="white"/> + <rect x="1228.9753" y="396.625" width="159.11903" height="92.25" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1233.9753 415.078)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="45.671517" y="15">Select a </tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="24.919517" y="33.448">model/feature </tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.743517" y="51.895996">configuration</tspan> + </text> + </g> + <g id="Graphic_25"> + <path d="M 681.4753 311 L 746.6226 355.7412 L 721.7386 428.1338 L 641.2119 428.1338 L 616.3279 355.7412 Z" fill="white"/> + <path d="M 681.4753 311 L 746.6226 355.7412 L 721.7386 428.1338 L 641.2119 428.1338 L 616.3279 355.7412 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(631.67526 363.777)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.84" y="15">Variables/</tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="21.056" y="33.448">features</tspan> + </text> + </g> + <g id="Graphic_24"> + <path d="M 681.4753 462 L 746.6226 506.7412 L 721.7386 579.1338 L 641.2119 579.1338 L 616.3279 506.7412 Z" fill="white"/> + <path d="M 681.4753 462 L 746.6226 506.7412 L 721.7386 579.1338 L 641.2119 579.1338 L 616.3279 506.7412 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(631.67526 496.329)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="26.232" y="15">Tuning </tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="12.759999" y="33.448">Parameter</tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="26.536" y="51.895996">Values</tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="26.248" y="70.34399">(If any)</tspan> + </text> + </g> + <g id="Graphic_23"> + <path d="M 1065.4258 384 L 1122.8763 442.75 L 1065.4258 501.5 L 1007.9753 442.75 Z" fill="white"/> + <path d="M 1065.4258 384 L 1122.8763 442.75 L 1065.4258 501.5 L 1007.9753 442.75 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1028.4869 423.127)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.08789" y="15">Good </tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="7.119891" y="33.448">Results?</tspan> + </text> + </g> + <g id="Line_22"> + <line x1="733.42135" y1="394.1463" x2="835.1432" y2="430.17034" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_21"> + <line x1="732.9047" y1="497.32015" x2="835.8827" y2="438.39224" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_20"> + <line x1="959.3763" y1="443.39734" x2="998.4163" y2="443.15904" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_19"> + <line x1="1122.8763" y1="442.75" x2="1219.0753" y2="442.75" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_18"> + <path d="M 1065.6305 384.2094 L 1066.1419 238 L 539.97526 238 L 539.47526 440.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_17"> + <line x1="539.57526" y1="441.20003" x2="622.7898" y2="491.3692" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_16"> + <line x1="539.57526" y1="441.20003" x2="622.19" y2="403.09478" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_15"> + <rect x="1151.708" y="428.526" width="34.592" height="28.447998" fill="#fffbf1"/> + <text transform="translate(1156.412 433.526)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="552447e-18" y="15">Yes</tspan> + </text> + </g> + <g id="Graphic_14"> + <rect x="1035.9936" y="256.0024" width="60.071305" height="28.447998" fill="#fffbf1"/> + <text transform="translate(1040.9936 261.0024)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.667652" y="15">No</tspan> + </text> + </g> + <g id="Graphic_3"> + <text transform="translate(857.0298 411.1617)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="6394885e-19" y="15">Resampling/</tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="7.56" y="33.448">Validation/</tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="21.328" y="51.895996">Tuning</tspan> + </text> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/parsnip-flagger.jpg b/SD/5.1_model/images/parsnip-flagger.jpg new file mode 100644 index 0000000..f010c87 Binary files /dev/null and b/SD/5.1_model/images/parsnip-flagger.jpg differ diff --git a/SD/5.1_model/images/pointing.svg b/SD/5.1_model/images/pointing.svg new file mode 100644 index 0000000..9a3dc1d --- /dev/null +++ b/SD/5.1_model/images/pointing.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="171 -266 641 1305" width="641" height="1305"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -3 7 6" markerWidth="7" markerHeight="6" color="black"> + <g> + <path d="M 4.8 0 L 0 -1.8 L 0 1.8 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <g id="Canvas_1" stroke-opacity="1" stroke="none" stroke-dasharray="none" fill-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Graphic_4"/> + <g id="Graphic_2"> + <text transform="translate(317.988 415)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="53" fill="black" x="20.871993" y="50">See this icon </tspan> + <tspan font-family="Helvetica Neue" font-size="53" fill="black" x="9.582993" y="112.484">in the corner? </tspan> + </text> + </g> + <g id="Line_7"> + <line x1="491.5" y1="386.5" x2="790.6051" y2="-235.6239" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/rolling.svg b/SD/5.1_model/images/rolling.svg new file mode 100644 index 0000000..4ae1759 --- /dev/null +++ b/SD/5.1_model/images/rolling.svg @@ -0,0 +1,579 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="-377 1076 642 429.65" width="642" height="429.65"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <font-face font-family="Helvetica Neue" font-size="16" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400"> + <font-face-src> + <font-face-name name="HelveticaNeue"/> + </font-face-src> + </font-face> + <font-face font-family="Helvetica Neue" font-size="14" panose-1="2 0 5 3 0 0 0 2 0 4" units-per-em="1000" underline-position="-100" underline-thickness="50" slope="0" x-height="517" cap-height="714" ascent="951.9958" descent="-212.99744" font-weight="400"> + <font-face-src> + <font-face-name name="HelveticaNeue"/> + </font-face-src> + </font-face> + </defs> + <metadata> Produced by OmniGraffle 7.18.6\n2022-02-15 21:09:58 +0000</metadata> + <g id="Canvas_1" fill="none" fill-opacity="1" stroke-opacity="1" stroke-dasharray="none" stroke="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Line_668"> + <line x1="-236" y1="1112" x2="219.1" y2="1112" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_667"> + <text transform="translate(-113.03865 1081)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="29842795e-20" y="15">Original Data (ordered by time)</tspan> + </text> + </g> + <g id="Group_2023"> + <g id="Graphic_2037"> + <path d="M 208.85 1133 L 218.15 1133 C 221.25 1133 222.8 1133 224.66 1133.64 C 226.21 1134.28 227.76 1135.88 228.38 1137.48 C 229 1139.4 229 1141 229 1144.2 L 229 1153.8 C 229 1157 229 1158.6 228.38 1160.52 C 227.76 1162.12 226.21 1163.72 224.66 1164.36 C 222.8 1165 221.25 1165 218.15 1165 L 208.85 1165 C 205.75 1165 204.2 1165 202.34 1164.36 C 200.79 1163.72 199.24 1162.12 198.62 1160.52 C 198 1158.6 198 1157 198 1153.8 L 198 1144.2 C 198 1141 198 1139.4 198.62 1137.48 C 199.24 1135.88 200.79 1134.28 202.34 1133.64 C 204.2 1133 205.75 1133 208.85 1133 M 208.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(205.716 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">15</tspan> + </text> + </g> + <g id="Graphic_2036"> + <path d="M 177.85 1133 L 187.15 1133 C 190.25 1133 191.8 1133 193.66 1133.64 C 195.21 1134.28 196.76 1135.88 197.38 1137.48 C 198 1139.4 198 1141 198 1144.2 L 198 1153.8 C 198 1157 198 1158.6 197.38 1160.52 C 196.76 1162.12 195.21 1163.72 193.66 1164.36 C 191.8 1165 190.25 1165 187.15 1165 L 177.85 1165 C 174.75 1165 173.2 1165 171.34 1164.36 C 169.79 1163.72 168.24 1162.12 167.62 1160.52 C 167 1158.6 167 1157 167 1153.8 L 167 1144.2 C 167 1141 167 1139.4 167.62 1137.48 C 168.24 1135.88 169.79 1134.28 171.34 1133.64 C 173.2 1133 174.75 1133 177.85 1133 M 177.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(174.716 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">14</tspan> + </text> + </g> + <g id="Graphic_2035"> + <path d="M 146.85 1133 L 156.15 1133 C 159.25 1133 160.8 1133 162.66 1133.64 C 164.21 1134.28 165.76 1135.88 166.38 1137.48 C 167 1139.4 167 1141 167 1144.2 L 167 1153.8 C 167 1157 167 1158.6 166.38 1160.52 C 165.76 1162.12 164.21 1163.72 162.66 1164.36 C 160.8 1165 159.25 1165 156.15 1165 L 146.85 1165 C 143.75 1165 142.2 1165 140.34 1164.36 C 138.79 1163.72 137.24 1162.12 136.62 1160.52 C 136 1158.6 136 1157 136 1153.8 L 136 1144.2 C 136 1141 136 1139.4 136.62 1137.48 C 137.24 1135.88 138.79 1134.28 140.34 1133.64 C 142.2 1133 143.75 1133 146.85 1133 M 146.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(143.716 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan> + </text> + </g> + <g id="Graphic_2034"> + <path d="M 115.85 1133 L 125.15 1133 C 128.25 1133 129.8 1133 131.66 1133.64 C 133.21 1134.28 134.76 1135.88 135.38 1137.48 C 136 1139.4 136 1141 136 1144.2 L 136 1153.8 C 136 1157 136 1158.6 135.38 1160.52 C 134.76 1162.12 133.21 1163.72 131.66 1164.36 C 129.8 1165 128.25 1165 125.15 1165 L 115.85 1165 C 112.75 1165 111.2 1165 109.34 1164.36 C 107.79 1163.72 106.24 1162.12 105.62 1160.52 C 105 1158.6 105 1157 105 1153.8 L 105 1144.2 C 105 1141 105 1139.4 105.62 1137.48 C 106.24 1135.88 107.79 1134.28 109.34 1133.64 C 111.2 1133 112.75 1133 115.85 1133 M 115.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(112.716 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan> + </text> + </g> + <g id="Graphic_2033"> + <path d="M 84.85 1133 L 94.15 1133 C 97.25 1133 98.8 1133 100.66 1133.64 C 102.21 1134.28 103.76 1135.88 104.38 1137.48 C 105 1139.4 105 1141 105 1144.2 L 105 1153.8 C 105 1157 105 1158.6 104.38 1160.52 C 103.76 1162.12 102.21 1163.72 100.66 1164.36 C 98.8 1165 97.25 1165 94.15 1165 L 84.85 1165 C 81.75 1165 80.2 1165 78.34 1164.36 C 76.79 1163.72 75.24 1162.12 74.62 1160.52 C 74 1158.6 74 1157 74 1153.8 L 74 1144.2 C 74 1141 74 1139.4 74.62 1137.48 C 75.24 1135.88 76.79 1134.28 78.34 1133.64 C 80.2 1133 81.75 1133 84.85 1133 M 84.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(81.716 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan> + </text> + </g> + <g id="Graphic_2032"> + <path d="M 53.85 1133 L 63.15 1133 C 66.25 1133 67.8 1133 69.66 1133.64 C 71.21 1134.28 72.76 1135.88 73.38 1137.48 C 74 1139.4 74 1141 74 1144.2 L 74 1153.8 C 74 1157 74 1158.6 73.38 1160.52 C 72.76 1162.12 71.21 1163.72 69.66 1164.36 C 67.8 1165 66.25 1165 63.15 1165 L 53.85 1165 C 50.75 1165 49.2 1165 47.34 1164.36 C 45.79 1163.72 44.24 1162.12 43.62 1160.52 C 43 1158.6 43 1157 43 1153.8 L 43 1144.2 C 43 1141 43 1139.4 43.62 1137.48 C 44.24 1135.88 45.79 1134.28 47.34 1133.64 C 49.2 1133 50.75 1133 53.85 1133 M 53.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(50.716 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan> + </text> + </g> + <g id="Graphic_2031"> + <path d="M 22.85 1133 L 32.15 1133 C 35.25 1133 36.8 1133 38.66 1133.64 C 40.21 1134.28 41.76 1135.88 42.38 1137.48 C 43 1139.4 43 1141 43 1144.2 L 43 1153.8 C 43 1157 43 1158.6 42.38 1160.52 C 41.76 1162.12 40.21 1163.72 38.66 1164.36 C 36.8 1165 35.25 1165 32.15 1165 L 22.85 1165 C 19.75 1165 18.2 1165 16.34 1164.36 C 14.79 1163.72 13.24 1162.12 12.62 1160.52 C 12 1158.6 12 1157 12 1153.8 L 12 1144.2 C 12 1141 12 1139.4 12.62 1137.48 C 13.24 1135.88 14.79 1134.28 16.34 1133.64 C 18.2 1133 19.75 1133 22.85 1133 M 22.85 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(23.608 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan> + </text> + </g> + <g id="Graphic_2030"> + <path d="M -8.15 1133 L 1.15 1133 C 4.25 1133 5.8 1133 7.66 1133.64 C 9.21 1134.28 10.76 1135.88 11.38 1137.48 C 12 1139.4 12 1141 12 1144.2 L 12 1153.8 C 12 1157 12 1158.6 11.38 1160.52 C 10.76 1162.12 9.21 1163.72 7.66 1164.36 C 5.8 1165 4.25 1165 1.15 1165 L -8.15 1165 C -11.25 1165 -12.8 1165 -14.66 1164.36 C -16.21 1163.72 -17.76 1162.12 -18.38 1160.52 C -19 1158.6 -19 1157 -19 1153.8 L -19 1144.2 C -19 1141 -19 1139.4 -18.38 1137.48 C -17.76 1135.88 -16.21 1134.28 -14.66 1133.64 C -12.8 1133 -11.25 1133 -8.15 1133 M -8.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-7.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan> + </text> + </g> + <g id="Graphic_2029"> + <path d="M -39.15 1133 L -29.85 1133 C -26.75 1133 -25.2 1133 -23.34 1133.64 C -21.79 1134.28 -20.24 1135.88 -19.62 1137.48 C -19 1139.4 -19 1141 -19 1144.2 L -19 1153.8 C -19 1157 -19 1158.6 -19.62 1160.52 C -20.24 1162.12 -21.79 1163.72 -23.34 1164.36 C -25.2 1165 -26.75 1165 -29.85 1165 L -39.15 1165 C -42.25 1165 -43.8 1165 -45.66 1164.36 C -47.21 1163.72 -48.76 1162.12 -49.38 1160.52 C -50 1158.6 -50 1157 -50 1153.8 L -50 1144.2 C -50 1141 -50 1139.4 -49.38 1137.48 C -48.76 1135.88 -47.21 1134.28 -45.66 1133.64 C -43.8 1133 -42.25 1133 -39.15 1133 M -39.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-38.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan> + </text> + </g> + <g id="Graphic_2028"> + <path d="M -70.15 1133 L -60.85 1133 C -57.75 1133 -56.2 1133 -54.34 1133.64 C -52.79 1134.28 -51.24 1135.88 -50.62 1137.48 C -50 1139.4 -50 1141 -50 1144.2 L -50 1153.8 C -50 1157 -50 1158.6 -50.62 1160.52 C -51.24 1162.12 -52.79 1163.72 -54.34 1164.36 C -56.2 1165 -57.75 1165 -60.85 1165 L -70.15 1165 C -73.25 1165 -74.8 1165 -76.66 1164.36 C -78.21 1163.72 -79.76 1162.12 -80.38 1160.52 C -81 1158.6 -81 1157 -81 1153.8 L -81 1144.2 C -81 1141 -81 1139.4 -80.38 1137.48 C -79.76 1135.88 -78.21 1134.28 -76.66 1133.64 C -74.8 1133 -73.25 1133 -70.15 1133 M -70.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-69.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan> + </text> + </g> + <g id="Graphic_2027"> + <path d="M -101.15 1133 L -91.85 1133 C -88.75 1133 -87.2 1133 -85.34 1133.64 C -83.79 1134.28 -82.24 1135.88 -81.62 1137.48 C -81 1139.4 -81 1141 -81 1144.2 L -81 1153.8 C -81 1157 -81 1158.6 -81.62 1160.52 C -82.24 1162.12 -83.79 1163.72 -85.34 1164.36 C -87.2 1165 -88.75 1165 -91.85 1165 L -101.15 1165 C -104.25 1165 -105.8 1165 -107.66 1164.36 C -109.21 1163.72 -110.76 1162.12 -111.38 1160.52 C -112 1158.6 -112 1157 -112 1153.8 L -112 1144.2 C -112 1141 -112 1139.4 -111.38 1137.48 C -110.76 1135.88 -109.21 1134.28 -107.66 1133.64 C -105.8 1133 -104.25 1133 -101.15 1133 M -101.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-100.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan> + </text> + </g> + <g id="Graphic_2026"> + <path d="M -132.15 1133 L -122.85 1133 C -119.75 1133 -118.2 1133 -116.34 1133.64 C -114.79 1134.28 -113.24 1135.88 -112.62 1137.48 C -112 1139.4 -112 1141 -112 1144.2 L -112 1153.8 C -112 1157 -112 1158.6 -112.62 1160.52 C -113.24 1162.12 -114.79 1163.72 -116.34 1164.36 C -118.2 1165 -119.75 1165 -122.85 1165 L -132.15 1165 C -135.25 1165 -136.8 1165 -138.66 1164.36 C -140.21 1163.72 -141.76 1162.12 -142.38 1160.52 C -143 1158.6 -143 1157 -143 1153.8 L -143 1144.2 C -143 1141 -143 1139.4 -142.38 1137.48 C -141.76 1135.88 -140.21 1134.28 -138.66 1133.64 C -136.8 1133 -135.25 1133 -132.15 1133 M -132.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-131.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan> + </text> + </g> + <g id="Graphic_2025"> + <path d="M -163.15 1133 L -153.85 1133 C -150.75 1133 -149.2 1133 -147.34 1133.64 C -145.79 1134.28 -144.24 1135.88 -143.62 1137.48 C -143 1139.4 -143 1141 -143 1144.2 L -143 1153.8 C -143 1157 -143 1158.6 -143.62 1160.52 C -144.24 1162.12 -145.79 1163.72 -147.34 1164.36 C -149.2 1165 -150.75 1165 -153.85 1165 L -163.15 1165 C -166.25 1165 -167.8 1165 -169.66 1164.36 C -171.21 1163.72 -172.76 1162.12 -173.38 1160.52 C -174 1158.6 -174 1157 -174 1153.8 L -174 1144.2 C -174 1141 -174 1139.4 -173.38 1137.48 C -172.76 1135.88 -171.21 1134.28 -169.66 1133.64 C -167.8 1133 -166.25 1133 -163.15 1133 M -163.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-162.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan> + </text> + </g> + <g id="Graphic_2024"> + <path d="M -194.15 1133 L -184.85 1133 C -181.75 1133 -180.2 1133 -178.34 1133.64 C -176.79 1134.28 -175.24 1135.88 -174.62 1137.48 C -174 1139.4 -174 1141 -174 1144.2 L -174 1153.8 C -174 1157 -174 1158.6 -174.62 1160.52 C -175.24 1162.12 -176.79 1163.72 -178.34 1164.36 C -180.2 1165 -181.75 1165 -184.85 1165 L -194.15 1165 C -197.25 1165 -198.8 1165 -200.66 1164.36 C -202.21 1163.72 -203.76 1162.12 -204.38 1160.52 C -205 1158.6 -205 1157 -205 1153.8 L -205 1144.2 C -205 1141 -205 1139.4 -204.38 1137.48 C -203.76 1135.88 -202.21 1134.28 -200.66 1133.64 C -198.8 1133 -197.25 1133 -194.15 1133 M -194.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-193.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">2</tspan> + </text> + </g> + <g id="Graphic_2022"> + <path d="M -225.15 1133 L -215.85 1133 C -212.75 1133 -211.2 1133 -209.34 1133.64 C -207.79 1134.28 -206.24 1135.88 -205.62 1137.48 C -205 1139.4 -205 1141 -205 1144.2 L -205 1153.8 C -205 1157 -205 1158.6 -205.62 1160.52 C -206.24 1162.12 -207.79 1163.72 -209.34 1164.36 C -211.2 1165 -212.75 1165 -215.85 1165 L -225.15 1165 C -228.25 1165 -229.8 1165 -231.66 1164.36 C -233.21 1163.72 -234.76 1162.12 -235.38 1160.52 C -236 1158.6 -236 1157 -236 1153.8 L -236 1144.2 C -236 1141 -236 1139.4 -235.38 1137.48 C -234.76 1135.88 -233.21 1134.28 -231.66 1133.64 C -229.8 1133 -228.25 1133 -225.15 1133 M -225.15 1133" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-224.392 1140.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">1</tspan> + </text> + </g> + </g> + <g id="Graphic_2053"/> + <g id="Graphic_2052"/> + <g id="Graphic_2051"> + <path d="M 182.85 1297 L 192.15 1297 C 195.25 1297 196.8 1297 198.66 1297.64 C 200.21 1298.28 201.76 1299.88 202.38 1301.48 C 203 1303.4 203 1305 203 1308.2 L 203 1317.8 C 203 1321 203 1322.6 202.38 1324.52 C 201.76 1326.12 200.21 1327.72 198.66 1328.36 C 196.8 1329 195.25 1329 192.15 1329 L 182.85 1329 C 179.75 1329 178.2 1329 176.34 1328.36 C 174.79 1327.72 173.24 1326.12 172.62 1324.52 C 172 1322.6 172 1321 172 1317.8 L 172 1308.2 C 172 1305 172 1303.4 172.62 1301.48 C 173.24 1299.88 174.79 1298.28 176.34 1297.64 C 178.2 1297 179.75 1297 182.85 1297 M 182.85 1297" fill="#afb1ff"/> + <path d="M 182.85 1297 L 192.15 1297 C 195.25 1297 196.8 1297 198.66 1297.64 C 200.21 1298.28 201.76 1299.88 202.38 1301.48 C 203 1303.4 203 1305 203 1308.2 L 203 1317.8 C 203 1321 203 1322.6 202.38 1324.52 C 201.76 1326.12 200.21 1327.72 198.66 1328.36 C 196.8 1329 195.25 1329 192.15 1329 L 182.85 1329 C 179.75 1329 178.2 1329 176.34 1328.36 C 174.79 1327.72 173.24 1326.12 172.62 1324.52 C 172 1322.6 172 1321 172 1317.8 L 172 1308.2 C 172 1305 172 1303.4 172.62 1301.48 C 173.24 1299.88 174.79 1298.28 176.34 1297.64 C 178.2 1297 179.75 1297 182.85 1297 M 182.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(179.716 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan> + </text> + </g> + <g id="Graphic_2050"> + <path d="M 151.85 1297 L 161.15 1297 C 164.25 1297 165.8 1297 167.66 1297.64 C 169.21 1298.28 170.76 1299.88 171.38 1301.48 C 172 1303.4 172 1305 172 1308.2 L 172 1317.8 C 172 1321 172 1322.6 171.38 1324.52 C 170.76 1326.12 169.21 1327.72 167.66 1328.36 C 165.8 1329 164.25 1329 161.15 1329 L 151.85 1329 C 148.75 1329 147.2 1329 145.34 1328.36 C 143.79 1327.72 142.24 1326.12 141.62 1324.52 C 141 1322.6 141 1321 141 1317.8 L 141 1308.2 C 141 1305 141 1303.4 141.62 1301.48 C 142.24 1299.88 143.79 1298.28 145.34 1297.64 C 147.2 1297 148.75 1297 151.85 1297 M 151.85 1297" fill="#afb1ff"/> + <path d="M 151.85 1297 L 161.15 1297 C 164.25 1297 165.8 1297 167.66 1297.64 C 169.21 1298.28 170.76 1299.88 171.38 1301.48 C 172 1303.4 172 1305 172 1308.2 L 172 1317.8 C 172 1321 172 1322.6 171.38 1324.52 C 170.76 1326.12 169.21 1327.72 167.66 1328.36 C 165.8 1329 164.25 1329 161.15 1329 L 151.85 1329 C 148.75 1329 147.2 1329 145.34 1328.36 C 143.79 1327.72 142.24 1326.12 141.62 1324.52 C 141 1322.6 141 1321 141 1317.8 L 141 1308.2 C 141 1305 141 1303.4 141.62 1301.48 C 142.24 1299.88 143.79 1298.28 145.34 1297.64 C 147.2 1297 148.75 1297 151.85 1297 M 151.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(148.716 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan> + </text> + </g> + <g id="Graphic_2049"> + <path d="M 120.85 1297 L 130.15 1297 C 133.25 1297 134.8 1297 136.66 1297.64 C 138.21 1298.28 139.76 1299.88 140.38 1301.48 C 141 1303.4 141 1305 141 1308.2 L 141 1317.8 C 141 1321 141 1322.6 140.38 1324.52 C 139.76 1326.12 138.21 1327.72 136.66 1328.36 C 134.8 1329 133.25 1329 130.15 1329 L 120.85 1329 C 117.75 1329 116.2 1329 114.34 1328.36 C 112.79 1327.72 111.24 1326.12 110.62 1324.52 C 110 1322.6 110 1321 110 1317.8 L 110 1308.2 C 110 1305 110 1303.4 110.62 1301.48 C 111.24 1299.88 112.79 1298.28 114.34 1297.64 C 116.2 1297 117.75 1297 120.85 1297 M 120.85 1297" fill="#afb1ff"/> + <path d="M 120.85 1297 L 130.15 1297 C 133.25 1297 134.8 1297 136.66 1297.64 C 138.21 1298.28 139.76 1299.88 140.38 1301.48 C 141 1303.4 141 1305 141 1308.2 L 141 1317.8 C 141 1321 141 1322.6 140.38 1324.52 C 139.76 1326.12 138.21 1327.72 136.66 1328.36 C 134.8 1329 133.25 1329 130.15 1329 L 120.85 1329 C 117.75 1329 116.2 1329 114.34 1328.36 C 112.79 1327.72 111.24 1326.12 110.62 1324.52 C 110 1322.6 110 1321 110 1317.8 L 110 1308.2 C 110 1305 110 1303.4 110.62 1301.48 C 111.24 1299.88 112.79 1298.28 114.34 1297.64 C 116.2 1297 117.75 1297 120.85 1297 M 120.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(121.608 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan> + </text> + </g> + <g id="Graphic_2048"/> + <g id="Graphic_2047"/> + <g id="Graphic_2046"> + <path d="M 27.85 1297 L 37.15 1297 C 40.25 1297 41.8 1297 43.66 1297.64 C 45.21 1298.28 46.76 1299.88 47.38 1301.48 C 48 1303.4 48 1305 48 1308.2 L 48 1317.8 C 48 1321 48 1322.6 47.38 1324.52 C 46.76 1326.12 45.21 1327.72 43.66 1328.36 C 41.8 1329 40.25 1329 37.15 1329 L 27.85 1329 C 24.75 1329 23.2 1329 21.34 1328.36 C 19.79 1327.72 18.24 1326.12 17.62 1324.52 C 17 1322.6 17 1321 17 1317.8 L 17 1308.2 C 17 1305 17 1303.4 17.62 1301.48 C 18.24 1299.88 19.79 1298.28 21.34 1297.64 C 23.2 1297 24.75 1297 27.85 1297 M 27.85 1297" fill="#dce7fd"/> + <path d="M 27.85 1297 L 37.15 1297 C 40.25 1297 41.8 1297 43.66 1297.64 C 45.21 1298.28 46.76 1299.88 47.38 1301.48 C 48 1303.4 48 1305 48 1308.2 L 48 1317.8 C 48 1321 48 1322.6 47.38 1324.52 C 46.76 1326.12 45.21 1327.72 43.66 1328.36 C 41.8 1329 40.25 1329 37.15 1329 L 27.85 1329 C 24.75 1329 23.2 1329 21.34 1328.36 C 19.79 1327.72 18.24 1326.12 17.62 1324.52 C 17 1322.6 17 1321 17 1317.8 L 17 1308.2 C 17 1305 17 1303.4 17.62 1301.48 C 18.24 1299.88 19.79 1298.28 21.34 1297.64 C 23.2 1297 24.75 1297 27.85 1297 M 27.85 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(28.608 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan> + </text> + </g> + <g id="Graphic_2045"> + <path d="M -3.15 1297 L 6.15 1297 C 9.25 1297 10.8 1297 12.66 1297.64 C 14.21 1298.28 15.76 1299.88 16.38 1301.48 C 17 1303.4 17 1305 17 1308.2 L 17 1317.8 C 17 1321 17 1322.6 16.38 1324.52 C 15.76 1326.12 14.21 1327.72 12.66 1328.36 C 10.8 1329 9.25 1329 6.15 1329 L -3.15 1329 C -6.25 1329 -7.8 1329 -9.66 1328.36 C -11.21 1327.72 -12.76 1326.12 -13.38 1324.52 C -14 1322.6 -14 1321 -14 1317.8 L -14 1308.2 C -14 1305 -14 1303.4 -13.38 1301.48 C -12.76 1299.88 -11.21 1298.28 -9.66 1297.64 C -7.8 1297 -6.25 1297 -3.15 1297 M -3.15 1297" fill="#dce7fd"/> + <path d="M -3.15 1297 L 6.15 1297 C 9.25 1297 10.8 1297 12.66 1297.64 C 14.21 1298.28 15.76 1299.88 16.38 1301.48 C 17 1303.4 17 1305 17 1308.2 L 17 1317.8 C 17 1321 17 1322.6 16.38 1324.52 C 15.76 1326.12 14.21 1327.72 12.66 1328.36 C 10.8 1329 9.25 1329 6.15 1329 L -3.15 1329 C -6.25 1329 -7.8 1329 -9.66 1328.36 C -11.21 1327.72 -12.76 1326.12 -13.38 1324.52 C -14 1322.6 -14 1321 -14 1317.8 L -14 1308.2 C -14 1305 -14 1303.4 -13.38 1301.48 C -12.76 1299.88 -11.21 1298.28 -9.66 1297.64 C -7.8 1297 -6.25 1297 -3.15 1297 M -3.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-2.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan> + </text> + </g> + <g id="Graphic_2044"> + <path d="M -34.15 1297 L -24.85 1297 C -21.75 1297 -20.2 1297 -18.34 1297.64 C -16.79 1298.28 -15.24 1299.88 -14.62 1301.48 C -14 1303.4 -14 1305 -14 1308.2 L -14 1317.8 C -14 1321 -14 1322.6 -14.62 1324.52 C -15.24 1326.12 -16.79 1327.72 -18.34 1328.36 C -20.2 1329 -21.75 1329 -24.85 1329 L -34.15 1329 C -37.25 1329 -38.8 1329 -40.66 1328.36 C -42.21 1327.72 -43.76 1326.12 -44.38 1324.52 C -45 1322.6 -45 1321 -45 1317.8 L -45 1308.2 C -45 1305 -45 1303.4 -44.38 1301.48 C -43.76 1299.88 -42.21 1298.28 -40.66 1297.64 C -38.8 1297 -37.25 1297 -34.15 1297 M -34.15 1297" fill="#dce7fd"/> + <path d="M -34.15 1297 L -24.85 1297 C -21.75 1297 -20.2 1297 -18.34 1297.64 C -16.79 1298.28 -15.24 1299.88 -14.62 1301.48 C -14 1303.4 -14 1305 -14 1308.2 L -14 1317.8 C -14 1321 -14 1322.6 -14.62 1324.52 C -15.24 1326.12 -16.79 1327.72 -18.34 1328.36 C -20.2 1329 -21.75 1329 -24.85 1329 L -34.15 1329 C -37.25 1329 -38.8 1329 -40.66 1328.36 C -42.21 1327.72 -43.76 1326.12 -44.38 1324.52 C -45 1322.6 -45 1321 -45 1317.8 L -45 1308.2 C -45 1305 -45 1303.4 -44.38 1301.48 C -43.76 1299.88 -42.21 1298.28 -40.66 1297.64 C -38.8 1297 -37.25 1297 -34.15 1297 M -34.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-33.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan> + </text> + </g> + <g id="Graphic_2043"> + <path d="M -65.15 1297 L -55.85 1297 C -52.75 1297 -51.2 1297 -49.34 1297.64 C -47.79 1298.28 -46.24 1299.88 -45.62 1301.48 C -45 1303.4 -45 1305 -45 1308.2 L -45 1317.8 C -45 1321 -45 1322.6 -45.62 1324.52 C -46.24 1326.12 -47.79 1327.72 -49.34 1328.36 C -51.2 1329 -52.75 1329 -55.85 1329 L -65.15 1329 C -68.25 1329 -69.8 1329 -71.66 1328.36 C -73.21 1327.72 -74.76 1326.12 -75.38 1324.52 C -76 1322.6 -76 1321 -76 1317.8 L -76 1308.2 C -76 1305 -76 1303.4 -75.38 1301.48 C -74.76 1299.88 -73.21 1298.28 -71.66 1297.64 C -69.8 1297 -68.25 1297 -65.15 1297 M -65.15 1297" fill="#dce7fd"/> + <path d="M -65.15 1297 L -55.85 1297 C -52.75 1297 -51.2 1297 -49.34 1297.64 C -47.79 1298.28 -46.24 1299.88 -45.62 1301.48 C -45 1303.4 -45 1305 -45 1308.2 L -45 1317.8 C -45 1321 -45 1322.6 -45.62 1324.52 C -46.24 1326.12 -47.79 1327.72 -49.34 1328.36 C -51.2 1329 -52.75 1329 -55.85 1329 L -65.15 1329 C -68.25 1329 -69.8 1329 -71.66 1328.36 C -73.21 1327.72 -74.76 1326.12 -75.38 1324.52 C -76 1322.6 -76 1321 -76 1317.8 L -76 1308.2 C -76 1305 -76 1303.4 -75.38 1301.48 C -74.76 1299.88 -73.21 1298.28 -71.66 1297.64 C -69.8 1297 -68.25 1297 -65.15 1297 M -65.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-64.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan> + </text> + </g> + <g id="Graphic_2042"> + <path d="M -96.15 1297 L -86.85 1297 C -83.75 1297 -82.2 1297 -80.34 1297.64 C -78.79 1298.28 -77.24 1299.88 -76.62 1301.48 C -76 1303.4 -76 1305 -76 1308.2 L -76 1317.8 C -76 1321 -76 1322.6 -76.62 1324.52 C -77.24 1326.12 -78.79 1327.72 -80.34 1328.36 C -82.2 1329 -83.75 1329 -86.85 1329 L -96.15 1329 C -99.25 1329 -100.8 1329 -102.66 1328.36 C -104.21 1327.72 -105.76 1326.12 -106.38 1324.52 C -107 1322.6 -107 1321 -107 1317.8 L -107 1308.2 C -107 1305 -107 1303.4 -106.38 1301.48 C -105.76 1299.88 -104.21 1298.28 -102.66 1297.64 C -100.8 1297 -99.25 1297 -96.15 1297 M -96.15 1297" fill="#dce7fd"/> + <path d="M -96.15 1297 L -86.85 1297 C -83.75 1297 -82.2 1297 -80.34 1297.64 C -78.79 1298.28 -77.24 1299.88 -76.62 1301.48 C -76 1303.4 -76 1305 -76 1308.2 L -76 1317.8 C -76 1321 -76 1322.6 -76.62 1324.52 C -77.24 1326.12 -78.79 1327.72 -80.34 1328.36 C -82.2 1329 -83.75 1329 -86.85 1329 L -96.15 1329 C -99.25 1329 -100.8 1329 -102.66 1328.36 C -104.21 1327.72 -105.76 1326.12 -106.38 1324.52 C -107 1322.6 -107 1321 -107 1317.8 L -107 1308.2 C -107 1305 -107 1303.4 -106.38 1301.48 C -105.76 1299.88 -104.21 1298.28 -102.66 1297.64 C -100.8 1297 -99.25 1297 -96.15 1297 M -96.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-95.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan> + </text> + </g> + <g id="Graphic_2041"> + <path d="M -127.15 1297 L -117.85 1297 C -114.75 1297 -113.2 1297 -111.34 1297.64 C -109.79 1298.28 -108.24 1299.88 -107.62 1301.48 C -107 1303.4 -107 1305 -107 1308.2 L -107 1317.8 C -107 1321 -107 1322.6 -107.62 1324.52 C -108.24 1326.12 -109.79 1327.72 -111.34 1328.36 C -113.2 1329 -114.75 1329 -117.85 1329 L -127.15 1329 C -130.25 1329 -131.8 1329 -133.66 1328.36 C -135.21 1327.72 -136.76 1326.12 -137.38 1324.52 C -138 1322.6 -138 1321 -138 1317.8 L -138 1308.2 C -138 1305 -138 1303.4 -137.38 1301.48 C -136.76 1299.88 -135.21 1298.28 -133.66 1297.64 C -131.8 1297 -130.25 1297 -127.15 1297 M -127.15 1297" fill="#dce7fd"/> + <path d="M -127.15 1297 L -117.85 1297 C -114.75 1297 -113.2 1297 -111.34 1297.64 C -109.79 1298.28 -108.24 1299.88 -107.62 1301.48 C -107 1303.4 -107 1305 -107 1308.2 L -107 1317.8 C -107 1321 -107 1322.6 -107.62 1324.52 C -108.24 1326.12 -109.79 1327.72 -111.34 1328.36 C -113.2 1329 -114.75 1329 -117.85 1329 L -127.15 1329 C -130.25 1329 -131.8 1329 -133.66 1328.36 C -135.21 1327.72 -136.76 1326.12 -137.38 1324.52 C -138 1322.6 -138 1321 -138 1317.8 L -138 1308.2 C -138 1305 -138 1303.4 -137.38 1301.48 C -136.76 1299.88 -135.21 1298.28 -133.66 1297.64 C -131.8 1297 -130.25 1297 -127.15 1297 M -127.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-126.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan> + </text> + </g> + <g id="Graphic_2040"> + <path d="M -158.15 1297 L -148.85 1297 C -145.75 1297 -144.2 1297 -142.34 1297.64 C -140.79 1298.28 -139.24 1299.88 -138.62 1301.48 C -138 1303.4 -138 1305 -138 1308.2 L -138 1317.8 C -138 1321 -138 1322.6 -138.62 1324.52 C -139.24 1326.12 -140.79 1327.72 -142.34 1328.36 C -144.2 1329 -145.75 1329 -148.85 1329 L -158.15 1329 C -161.25 1329 -162.8 1329 -164.66 1328.36 C -166.21 1327.72 -167.76 1326.12 -168.38 1324.52 C -169 1322.6 -169 1321 -169 1317.8 L -169 1308.2 C -169 1305 -169 1303.4 -168.38 1301.48 C -167.76 1299.88 -166.21 1298.28 -164.66 1297.64 C -162.8 1297 -161.25 1297 -158.15 1297 M -158.15 1297" fill="#dce7fd"/> + <path d="M -158.15 1297 L -148.85 1297 C -145.75 1297 -144.2 1297 -142.34 1297.64 C -140.79 1298.28 -139.24 1299.88 -138.62 1301.48 C -138 1303.4 -138 1305 -138 1308.2 L -138 1317.8 C -138 1321 -138 1322.6 -138.62 1324.52 C -139.24 1326.12 -140.79 1327.72 -142.34 1328.36 C -144.2 1329 -145.75 1329 -148.85 1329 L -158.15 1329 C -161.25 1329 -162.8 1329 -164.66 1328.36 C -166.21 1327.72 -167.76 1326.12 -168.38 1324.52 C -169 1322.6 -169 1321 -169 1317.8 L -169 1308.2 C -169 1305 -169 1303.4 -168.38 1301.48 C -167.76 1299.88 -166.21 1298.28 -164.66 1297.64 C -162.8 1297 -161.25 1297 -158.15 1297 M -158.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-157.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">2</tspan> + </text> + </g> + <g id="Graphic_2039"> + <path d="M -189.15 1297 L -179.85 1297 C -176.75 1297 -175.2 1297 -173.34 1297.64 C -171.79 1298.28 -170.24 1299.88 -169.62 1301.48 C -169 1303.4 -169 1305 -169 1308.2 L -169 1317.8 C -169 1321 -169 1322.6 -169.62 1324.52 C -170.24 1326.12 -171.79 1327.72 -173.34 1328.36 C -175.2 1329 -176.75 1329 -179.85 1329 L -189.15 1329 C -192.25 1329 -193.8 1329 -195.66 1328.36 C -197.21 1327.72 -198.76 1326.12 -199.38 1324.52 C -200 1322.6 -200 1321 -200 1317.8 L -200 1308.2 C -200 1305 -200 1303.4 -199.38 1301.48 C -198.76 1299.88 -197.21 1298.28 -195.66 1297.64 C -193.8 1297 -192.25 1297 -189.15 1297 M -189.15 1297" fill="#dce7fd"/> + <path d="M -189.15 1297 L -179.85 1297 C -176.75 1297 -175.2 1297 -173.34 1297.64 C -171.79 1298.28 -170.24 1299.88 -169.62 1301.48 C -169 1303.4 -169 1305 -169 1308.2 L -169 1317.8 C -169 1321 -169 1322.6 -169.62 1324.52 C -170.24 1326.12 -171.79 1327.72 -173.34 1328.36 C -175.2 1329 -176.75 1329 -179.85 1329 L -189.15 1329 C -192.25 1329 -193.8 1329 -195.66 1328.36 C -197.21 1327.72 -198.76 1326.12 -199.38 1324.52 C -200 1322.6 -200 1321 -200 1317.8 L -200 1308.2 C -200 1305 -200 1303.4 -199.38 1301.48 C -198.76 1299.88 -197.21 1298.28 -195.66 1297.64 C -193.8 1297 -192.25 1297 -189.15 1297 M -189.15 1297" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-188.392 1304.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">1</tspan> + </text> + </g> + <g id="Line_2054"> + <line x1="-250" y1="1505" x2="-250" y2="1297" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3"/> + </g> + <g id="Graphic_2055"> + <text transform="translate(-372 1305.552)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 1</tspan> + </text> + </g> + <g id="Graphic_2276"/> + <g id="Graphic_2275"/> + <g id="Graphic_2274"> + <path d="M 182.85 1341 L 192.15 1341 C 195.25 1341 196.8 1341 198.66 1341.64 C 200.21 1342.28 201.76 1343.88 202.38 1345.48 C 203 1347.4 203 1349 203 1352.2 L 203 1361.8 C 203 1365 203 1366.6 202.38 1368.52 C 201.76 1370.12 200.21 1371.72 198.66 1372.36 C 196.8 1373 195.25 1373 192.15 1373 L 182.85 1373 C 179.75 1373 178.2 1373 176.34 1372.36 C 174.79 1371.72 173.24 1370.12 172.62 1368.52 C 172 1366.6 172 1365 172 1361.8 L 172 1352.2 C 172 1349 172 1347.4 172.62 1345.48 C 173.24 1343.88 174.79 1342.28 176.34 1341.64 C 178.2 1341 179.75 1341 182.85 1341 M 182.85 1341" fill="#afb1ff"/> + <path d="M 182.85 1341 L 192.15 1341 C 195.25 1341 196.8 1341 198.66 1341.64 C 200.21 1342.28 201.76 1343.88 202.38 1345.48 C 203 1347.4 203 1349 203 1352.2 L 203 1361.8 C 203 1365 203 1366.6 202.38 1368.52 C 201.76 1370.12 200.21 1371.72 198.66 1372.36 C 196.8 1373 195.25 1373 192.15 1373 L 182.85 1373 C 179.75 1373 178.2 1373 176.34 1372.36 C 174.79 1371.72 173.24 1370.12 172.62 1368.52 C 172 1366.6 172 1365 172 1361.8 L 172 1352.2 C 172 1349 172 1347.4 172.62 1345.48 C 173.24 1343.88 174.79 1342.28 176.34 1341.64 C 178.2 1341 179.75 1341 182.85 1341 M 182.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(179.716 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan> + </text> + </g> + <g id="Graphic_2273"> + <path d="M 151.85 1341 L 161.15 1341 C 164.25 1341 165.8 1341 167.66 1341.64 C 169.21 1342.28 170.76 1343.88 171.38 1345.48 C 172 1347.4 172 1349 172 1352.2 L 172 1361.8 C 172 1365 172 1366.6 171.38 1368.52 C 170.76 1370.12 169.21 1371.72 167.66 1372.36 C 165.8 1373 164.25 1373 161.15 1373 L 151.85 1373 C 148.75 1373 147.2 1373 145.34 1372.36 C 143.79 1371.72 142.24 1370.12 141.62 1368.52 C 141 1366.6 141 1365 141 1361.8 L 141 1352.2 C 141 1349 141 1347.4 141.62 1345.48 C 142.24 1343.88 143.79 1342.28 145.34 1341.64 C 147.2 1341 148.75 1341 151.85 1341 M 151.85 1341" fill="#afb1ff"/> + <path d="M 151.85 1341 L 161.15 1341 C 164.25 1341 165.8 1341 167.66 1341.64 C 169.21 1342.28 170.76 1343.88 171.38 1345.48 C 172 1347.4 172 1349 172 1352.2 L 172 1361.8 C 172 1365 172 1366.6 171.38 1368.52 C 170.76 1370.12 169.21 1371.72 167.66 1372.36 C 165.8 1373 164.25 1373 161.15 1373 L 151.85 1373 C 148.75 1373 147.2 1373 145.34 1372.36 C 143.79 1371.72 142.24 1370.12 141.62 1368.52 C 141 1366.6 141 1365 141 1361.8 L 141 1352.2 C 141 1349 141 1347.4 141.62 1345.48 C 142.24 1343.88 143.79 1342.28 145.34 1341.64 C 147.2 1341 148.75 1341 151.85 1341 M 151.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(148.716 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan> + </text> + </g> + <g id="Graphic_2272"> + <path d="M 120.85 1341 L 130.15 1341 C 133.25 1341 134.8 1341 136.66 1341.64 C 138.21 1342.28 139.76 1343.88 140.38 1345.48 C 141 1347.4 141 1349 141 1352.2 L 141 1361.8 C 141 1365 141 1366.6 140.38 1368.52 C 139.76 1370.12 138.21 1371.72 136.66 1372.36 C 134.8 1373 133.25 1373 130.15 1373 L 120.85 1373 C 117.75 1373 116.2 1373 114.34 1372.36 C 112.79 1371.72 111.24 1370.12 110.62 1368.52 C 110 1366.6 110 1365 110 1361.8 L 110 1352.2 C 110 1349 110 1347.4 110.62 1345.48 C 111.24 1343.88 112.79 1342.28 114.34 1341.64 C 116.2 1341 117.75 1341 120.85 1341 M 120.85 1341" fill="#afb1ff"/> + <path d="M 120.85 1341 L 130.15 1341 C 133.25 1341 134.8 1341 136.66 1341.64 C 138.21 1342.28 139.76 1343.88 140.38 1345.48 C 141 1347.4 141 1349 141 1352.2 L 141 1361.8 C 141 1365 141 1366.6 140.38 1368.52 C 139.76 1370.12 138.21 1371.72 136.66 1372.36 C 134.8 1373 133.25 1373 130.15 1373 L 120.85 1373 C 117.75 1373 116.2 1373 114.34 1372.36 C 112.79 1371.72 111.24 1370.12 110.62 1368.52 C 110 1366.6 110 1365 110 1361.8 L 110 1352.2 C 110 1349 110 1347.4 110.62 1345.48 C 111.24 1343.88 112.79 1342.28 114.34 1341.64 C 116.2 1341 117.75 1341 120.85 1341 M 120.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(117.716 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan> + </text> + </g> + <g id="Graphic_2271"/> + <g id="Graphic_2270"/> + <g id="Graphic_2269"> + <path d="M 27.85 1341 L 37.15 1341 C 40.25 1341 41.8 1341 43.66 1341.64 C 45.21 1342.28 46.76 1343.88 47.38 1345.48 C 48 1347.4 48 1349 48 1352.2 L 48 1361.8 C 48 1365 48 1366.6 47.38 1368.52 C 46.76 1370.12 45.21 1371.72 43.66 1372.36 C 41.8 1373 40.25 1373 37.15 1373 L 27.85 1373 C 24.75 1373 23.2 1373 21.34 1372.36 C 19.79 1371.72 18.24 1370.12 17.62 1368.52 C 17 1366.6 17 1365 17 1361.8 L 17 1352.2 C 17 1349 17 1347.4 17.62 1345.48 C 18.24 1343.88 19.79 1342.28 21.34 1341.64 C 23.2 1341 24.75 1341 27.85 1341 M 27.85 1341" fill="#dce7fd"/> + <path d="M 27.85 1341 L 37.15 1341 C 40.25 1341 41.8 1341 43.66 1341.64 C 45.21 1342.28 46.76 1343.88 47.38 1345.48 C 48 1347.4 48 1349 48 1352.2 L 48 1361.8 C 48 1365 48 1366.6 47.38 1368.52 C 46.76 1370.12 45.21 1371.72 43.66 1372.36 C 41.8 1373 40.25 1373 37.15 1373 L 27.85 1373 C 24.75 1373 23.2 1373 21.34 1372.36 C 19.79 1371.72 18.24 1370.12 17.62 1368.52 C 17 1366.6 17 1365 17 1361.8 L 17 1352.2 C 17 1349 17 1347.4 17.62 1345.48 C 18.24 1343.88 19.79 1342.28 21.34 1341.64 C 23.2 1341 24.75 1341 27.85 1341 M 27.85 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(28.608 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan> + </text> + </g> + <g id="Graphic_2268"> + <path d="M -3.15 1341 L 6.15 1341 C 9.25 1341 10.8 1341 12.66 1341.64 C 14.21 1342.28 15.76 1343.88 16.38 1345.48 C 17 1347.4 17 1349 17 1352.2 L 17 1361.8 C 17 1365 17 1366.6 16.38 1368.52 C 15.76 1370.12 14.21 1371.72 12.66 1372.36 C 10.8 1373 9.25 1373 6.15 1373 L -3.15 1373 C -6.25 1373 -7.8 1373 -9.66 1372.36 C -11.21 1371.72 -12.76 1370.12 -13.38 1368.52 C -14 1366.6 -14 1365 -14 1361.8 L -14 1352.2 C -14 1349 -14 1347.4 -13.38 1345.48 C -12.76 1343.88 -11.21 1342.28 -9.66 1341.64 C -7.8 1341 -6.25 1341 -3.15 1341 M -3.15 1341" fill="#dce7fd"/> + <path d="M -3.15 1341 L 6.15 1341 C 9.25 1341 10.8 1341 12.66 1341.64 C 14.21 1342.28 15.76 1343.88 16.38 1345.48 C 17 1347.4 17 1349 17 1352.2 L 17 1361.8 C 17 1365 17 1366.6 16.38 1368.52 C 15.76 1370.12 14.21 1371.72 12.66 1372.36 C 10.8 1373 9.25 1373 6.15 1373 L -3.15 1373 C -6.25 1373 -7.8 1373 -9.66 1372.36 C -11.21 1371.72 -12.76 1370.12 -13.38 1368.52 C -14 1366.6 -14 1365 -14 1361.8 L -14 1352.2 C -14 1349 -14 1347.4 -13.38 1345.48 C -12.76 1343.88 -11.21 1342.28 -9.66 1341.64 C -7.8 1341 -6.25 1341 -3.15 1341 M -3.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-2.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan> + </text> + </g> + <g id="Graphic_2267"> + <path d="M -34.15 1341 L -24.85 1341 C -21.75 1341 -20.2 1341 -18.34 1341.64 C -16.79 1342.28 -15.24 1343.88 -14.62 1345.48 C -14 1347.4 -14 1349 -14 1352.2 L -14 1361.8 C -14 1365 -14 1366.6 -14.62 1368.52 C -15.24 1370.12 -16.79 1371.72 -18.34 1372.36 C -20.2 1373 -21.75 1373 -24.85 1373 L -34.15 1373 C -37.25 1373 -38.8 1373 -40.66 1372.36 C -42.21 1371.72 -43.76 1370.12 -44.38 1368.52 C -45 1366.6 -45 1365 -45 1361.8 L -45 1352.2 C -45 1349 -45 1347.4 -44.38 1345.48 C -43.76 1343.88 -42.21 1342.28 -40.66 1341.64 C -38.8 1341 -37.25 1341 -34.15 1341 M -34.15 1341" fill="#dce7fd"/> + <path d="M -34.15 1341 L -24.85 1341 C -21.75 1341 -20.2 1341 -18.34 1341.64 C -16.79 1342.28 -15.24 1343.88 -14.62 1345.48 C -14 1347.4 -14 1349 -14 1352.2 L -14 1361.8 C -14 1365 -14 1366.6 -14.62 1368.52 C -15.24 1370.12 -16.79 1371.72 -18.34 1372.36 C -20.2 1373 -21.75 1373 -24.85 1373 L -34.15 1373 C -37.25 1373 -38.8 1373 -40.66 1372.36 C -42.21 1371.72 -43.76 1370.12 -44.38 1368.52 C -45 1366.6 -45 1365 -45 1361.8 L -45 1352.2 C -45 1349 -45 1347.4 -44.38 1345.48 C -43.76 1343.88 -42.21 1342.28 -40.66 1341.64 C -38.8 1341 -37.25 1341 -34.15 1341 M -34.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-33.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan> + </text> + </g> + <g id="Graphic_2266"> + <path d="M -65.15 1341 L -55.85 1341 C -52.75 1341 -51.2 1341 -49.34 1341.64 C -47.79 1342.28 -46.24 1343.88 -45.62 1345.48 C -45 1347.4 -45 1349 -45 1352.2 L -45 1361.8 C -45 1365 -45 1366.6 -45.62 1368.52 C -46.24 1370.12 -47.79 1371.72 -49.34 1372.36 C -51.2 1373 -52.75 1373 -55.85 1373 L -65.15 1373 C -68.25 1373 -69.8 1373 -71.66 1372.36 C -73.21 1371.72 -74.76 1370.12 -75.38 1368.52 C -76 1366.6 -76 1365 -76 1361.8 L -76 1352.2 C -76 1349 -76 1347.4 -75.38 1345.48 C -74.76 1343.88 -73.21 1342.28 -71.66 1341.64 C -69.8 1341 -68.25 1341 -65.15 1341 M -65.15 1341" fill="#dce7fd"/> + <path d="M -65.15 1341 L -55.85 1341 C -52.75 1341 -51.2 1341 -49.34 1341.64 C -47.79 1342.28 -46.24 1343.88 -45.62 1345.48 C -45 1347.4 -45 1349 -45 1352.2 L -45 1361.8 C -45 1365 -45 1366.6 -45.62 1368.52 C -46.24 1370.12 -47.79 1371.72 -49.34 1372.36 C -51.2 1373 -52.75 1373 -55.85 1373 L -65.15 1373 C -68.25 1373 -69.8 1373 -71.66 1372.36 C -73.21 1371.72 -74.76 1370.12 -75.38 1368.52 C -76 1366.6 -76 1365 -76 1361.8 L -76 1352.2 C -76 1349 -76 1347.4 -75.38 1345.48 C -74.76 1343.88 -73.21 1342.28 -71.66 1341.64 C -69.8 1341 -68.25 1341 -65.15 1341 M -65.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-64.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan> + </text> + </g> + <g id="Graphic_2265"> + <path d="M -96.15 1341 L -86.85 1341 C -83.75 1341 -82.2 1341 -80.34 1341.64 C -78.79 1342.28 -77.24 1343.88 -76.62 1345.48 C -76 1347.4 -76 1349 -76 1352.2 L -76 1361.8 C -76 1365 -76 1366.6 -76.62 1368.52 C -77.24 1370.12 -78.79 1371.72 -80.34 1372.36 C -82.2 1373 -83.75 1373 -86.85 1373 L -96.15 1373 C -99.25 1373 -100.8 1373 -102.66 1372.36 C -104.21 1371.72 -105.76 1370.12 -106.38 1368.52 C -107 1366.6 -107 1365 -107 1361.8 L -107 1352.2 C -107 1349 -107 1347.4 -106.38 1345.48 C -105.76 1343.88 -104.21 1342.28 -102.66 1341.64 C -100.8 1341 -99.25 1341 -96.15 1341 M -96.15 1341" fill="#dce7fd"/> + <path d="M -96.15 1341 L -86.85 1341 C -83.75 1341 -82.2 1341 -80.34 1341.64 C -78.79 1342.28 -77.24 1343.88 -76.62 1345.48 C -76 1347.4 -76 1349 -76 1352.2 L -76 1361.8 C -76 1365 -76 1366.6 -76.62 1368.52 C -77.24 1370.12 -78.79 1371.72 -80.34 1372.36 C -82.2 1373 -83.75 1373 -86.85 1373 L -96.15 1373 C -99.25 1373 -100.8 1373 -102.66 1372.36 C -104.21 1371.72 -105.76 1370.12 -106.38 1368.52 C -107 1366.6 -107 1365 -107 1361.8 L -107 1352.2 C -107 1349 -107 1347.4 -106.38 1345.48 C -105.76 1343.88 -104.21 1342.28 -102.66 1341.64 C -100.8 1341 -99.25 1341 -96.15 1341 M -96.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-95.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan> + </text> + </g> + <g id="Graphic_2264"> + <path d="M -127.15 1341 L -117.85 1341 C -114.75 1341 -113.2 1341 -111.34 1341.64 C -109.79 1342.28 -108.24 1343.88 -107.62 1345.48 C -107 1347.4 -107 1349 -107 1352.2 L -107 1361.8 C -107 1365 -107 1366.6 -107.62 1368.52 C -108.24 1370.12 -109.79 1371.72 -111.34 1372.36 C -113.2 1373 -114.75 1373 -117.85 1373 L -127.15 1373 C -130.25 1373 -131.8 1373 -133.66 1372.36 C -135.21 1371.72 -136.76 1370.12 -137.38 1368.52 C -138 1366.6 -138 1365 -138 1361.8 L -138 1352.2 C -138 1349 -138 1347.4 -137.38 1345.48 C -136.76 1343.88 -135.21 1342.28 -133.66 1341.64 C -131.8 1341 -130.25 1341 -127.15 1341 M -127.15 1341" fill="#dce7fd"/> + <path d="M -127.15 1341 L -117.85 1341 C -114.75 1341 -113.2 1341 -111.34 1341.64 C -109.79 1342.28 -108.24 1343.88 -107.62 1345.48 C -107 1347.4 -107 1349 -107 1352.2 L -107 1361.8 C -107 1365 -107 1366.6 -107.62 1368.52 C -108.24 1370.12 -109.79 1371.72 -111.34 1372.36 C -113.2 1373 -114.75 1373 -117.85 1373 L -127.15 1373 C -130.25 1373 -131.8 1373 -133.66 1372.36 C -135.21 1371.72 -136.76 1370.12 -137.38 1368.52 C -138 1366.6 -138 1365 -138 1361.8 L -138 1352.2 C -138 1349 -138 1347.4 -137.38 1345.48 C -136.76 1343.88 -135.21 1342.28 -133.66 1341.64 C -131.8 1341 -130.25 1341 -127.15 1341 M -127.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-126.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan> + </text> + </g> + <g id="Graphic_2263"> + <path d="M -158.15 1341 L -148.85 1341 C -145.75 1341 -144.2 1341 -142.34 1341.64 C -140.79 1342.28 -139.24 1343.88 -138.62 1345.48 C -138 1347.4 -138 1349 -138 1352.2 L -138 1361.8 C -138 1365 -138 1366.6 -138.62 1368.52 C -139.24 1370.12 -140.79 1371.72 -142.34 1372.36 C -144.2 1373 -145.75 1373 -148.85 1373 L -158.15 1373 C -161.25 1373 -162.8 1373 -164.66 1372.36 C -166.21 1371.72 -167.76 1370.12 -168.38 1368.52 C -169 1366.6 -169 1365 -169 1361.8 L -169 1352.2 C -169 1349 -169 1347.4 -168.38 1345.48 C -167.76 1343.88 -166.21 1342.28 -164.66 1341.64 C -162.8 1341 -161.25 1341 -158.15 1341 M -158.15 1341" fill="#dce7fd"/> + <path d="M -158.15 1341 L -148.85 1341 C -145.75 1341 -144.2 1341 -142.34 1341.64 C -140.79 1342.28 -139.24 1343.88 -138.62 1345.48 C -138 1347.4 -138 1349 -138 1352.2 L -138 1361.8 C -138 1365 -138 1366.6 -138.62 1368.52 C -139.24 1370.12 -140.79 1371.72 -142.34 1372.36 C -144.2 1373 -145.75 1373 -148.85 1373 L -158.15 1373 C -161.25 1373 -162.8 1373 -164.66 1372.36 C -166.21 1371.72 -167.76 1370.12 -168.38 1368.52 C -169 1366.6 -169 1365 -169 1361.8 L -169 1352.2 C -169 1349 -169 1347.4 -168.38 1345.48 C -167.76 1343.88 -166.21 1342.28 -164.66 1341.64 C -162.8 1341 -161.25 1341 -158.15 1341 M -158.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-157.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan> + </text> + </g> + <g id="Graphic_2262"> + <path d="M -189.15 1341 L -179.85 1341 C -176.75 1341 -175.2 1341 -173.34 1341.64 C -171.79 1342.28 -170.24 1343.88 -169.62 1345.48 C -169 1347.4 -169 1349 -169 1352.2 L -169 1361.8 C -169 1365 -169 1366.6 -169.62 1368.52 C -170.24 1370.12 -171.79 1371.72 -173.34 1372.36 C -175.2 1373 -176.75 1373 -179.85 1373 L -189.15 1373 C -192.25 1373 -193.8 1373 -195.66 1372.36 C -197.21 1371.72 -198.76 1370.12 -199.38 1368.52 C -200 1366.6 -200 1365 -200 1361.8 L -200 1352.2 C -200 1349 -200 1347.4 -199.38 1345.48 C -198.76 1343.88 -197.21 1342.28 -195.66 1341.64 C -193.8 1341 -192.25 1341 -189.15 1341 M -189.15 1341" fill="#dce7fd"/> + <path d="M -189.15 1341 L -179.85 1341 C -176.75 1341 -175.2 1341 -173.34 1341.64 C -171.79 1342.28 -170.24 1343.88 -169.62 1345.48 C -169 1347.4 -169 1349 -169 1352.2 L -169 1361.8 C -169 1365 -169 1366.6 -169.62 1368.52 C -170.24 1370.12 -171.79 1371.72 -173.34 1372.36 C -175.2 1373 -176.75 1373 -179.85 1373 L -189.15 1373 C -192.25 1373 -193.8 1373 -195.66 1372.36 C -197.21 1371.72 -198.76 1370.12 -199.38 1368.52 C -200 1366.6 -200 1365 -200 1361.8 L -200 1352.2 C -200 1349 -200 1347.4 -199.38 1345.48 C -198.76 1343.88 -197.21 1342.28 -195.66 1341.64 C -193.8 1341 -192.25 1341 -189.15 1341 M -189.15 1341" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-188.392 1348.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">2</tspan> + </text> + </g> + <g id="Graphic_2260"> + <text transform="translate(-372 1349.552)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 2</tspan> + </text> + </g> + <g id="Graphic_2293"/> + <g id="Graphic_2292"/> + <g id="Graphic_2291"> + <path d="M 182.85 1385 L 192.15 1385 C 195.25 1385 196.8 1385 198.66 1385.64 C 200.21 1386.28 201.76 1387.88 202.38 1389.48 C 203 1391.4 203 1393 203 1396.2 L 203 1405.8 C 203 1409 203 1410.6 202.38 1412.52 C 201.76 1414.12 200.21 1415.72 198.66 1416.36 C 196.8 1417 195.25 1417 192.15 1417 L 182.85 1417 C 179.75 1417 178.2 1417 176.34 1416.36 C 174.79 1415.72 173.24 1414.12 172.62 1412.52 C 172 1410.6 172 1409 172 1405.8 L 172 1396.2 C 172 1393 172 1391.4 172.62 1389.48 C 173.24 1387.88 174.79 1386.28 176.34 1385.64 C 178.2 1385 179.75 1385 182.85 1385 M 182.85 1385" fill="#afb1ff"/> + <path d="M 182.85 1385 L 192.15 1385 C 195.25 1385 196.8 1385 198.66 1385.64 C 200.21 1386.28 201.76 1387.88 202.38 1389.48 C 203 1391.4 203 1393 203 1396.2 L 203 1405.8 C 203 1409 203 1410.6 202.38 1412.52 C 201.76 1414.12 200.21 1415.72 198.66 1416.36 C 196.8 1417 195.25 1417 192.15 1417 L 182.85 1417 C 179.75 1417 178.2 1417 176.34 1416.36 C 174.79 1415.72 173.24 1414.12 172.62 1412.52 C 172 1410.6 172 1409 172 1405.8 L 172 1396.2 C 172 1393 172 1391.4 172.62 1389.48 C 173.24 1387.88 174.79 1386.28 176.34 1385.64 C 178.2 1385 179.75 1385 182.85 1385 M 182.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(179.716 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan> + </text> + </g> + <g id="Graphic_2290"> + <path d="M 151.85 1385 L 161.15 1385 C 164.25 1385 165.8 1385 167.66 1385.64 C 169.21 1386.28 170.76 1387.88 171.38 1389.48 C 172 1391.4 172 1393 172 1396.2 L 172 1405.8 C 172 1409 172 1410.6 171.38 1412.52 C 170.76 1414.12 169.21 1415.72 167.66 1416.36 C 165.8 1417 164.25 1417 161.15 1417 L 151.85 1417 C 148.75 1417 147.2 1417 145.34 1416.36 C 143.79 1415.72 142.24 1414.12 141.62 1412.52 C 141 1410.6 141 1409 141 1405.8 L 141 1396.2 C 141 1393 141 1391.4 141.62 1389.48 C 142.24 1387.88 143.79 1386.28 145.34 1385.64 C 147.2 1385 148.75 1385 151.85 1385 M 151.85 1385" fill="#afb1ff"/> + <path d="M 151.85 1385 L 161.15 1385 C 164.25 1385 165.8 1385 167.66 1385.64 C 169.21 1386.28 170.76 1387.88 171.38 1389.48 C 172 1391.4 172 1393 172 1396.2 L 172 1405.8 C 172 1409 172 1410.6 171.38 1412.52 C 170.76 1414.12 169.21 1415.72 167.66 1416.36 C 165.8 1417 164.25 1417 161.15 1417 L 151.85 1417 C 148.75 1417 147.2 1417 145.34 1416.36 C 143.79 1415.72 142.24 1414.12 141.62 1412.52 C 141 1410.6 141 1409 141 1405.8 L 141 1396.2 C 141 1393 141 1391.4 141.62 1389.48 C 142.24 1387.88 143.79 1386.28 145.34 1385.64 C 147.2 1385 148.75 1385 151.85 1385 M 151.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(148.716 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan> + </text> + </g> + <g id="Graphic_2289"> + <path d="M 120.85 1385 L 130.15 1385 C 133.25 1385 134.8 1385 136.66 1385.64 C 138.21 1386.28 139.76 1387.88 140.38 1389.48 C 141 1391.4 141 1393 141 1396.2 L 141 1405.8 C 141 1409 141 1410.6 140.38 1412.52 C 139.76 1414.12 138.21 1415.72 136.66 1416.36 C 134.8 1417 133.25 1417 130.15 1417 L 120.85 1417 C 117.75 1417 116.2 1417 114.34 1416.36 C 112.79 1415.72 111.24 1414.12 110.62 1412.52 C 110 1410.6 110 1409 110 1405.8 L 110 1396.2 C 110 1393 110 1391.4 110.62 1389.48 C 111.24 1387.88 112.79 1386.28 114.34 1385.64 C 116.2 1385 117.75 1385 120.85 1385 M 120.85 1385" fill="#afb1ff"/> + <path d="M 120.85 1385 L 130.15 1385 C 133.25 1385 134.8 1385 136.66 1385.64 C 138.21 1386.28 139.76 1387.88 140.38 1389.48 C 141 1391.4 141 1393 141 1396.2 L 141 1405.8 C 141 1409 141 1410.6 140.38 1412.52 C 139.76 1414.12 138.21 1415.72 136.66 1416.36 C 134.8 1417 133.25 1417 130.15 1417 L 120.85 1417 C 117.75 1417 116.2 1417 114.34 1416.36 C 112.79 1415.72 111.24 1414.12 110.62 1412.52 C 110 1410.6 110 1409 110 1405.8 L 110 1396.2 C 110 1393 110 1391.4 110.62 1389.48 C 111.24 1387.88 112.79 1386.28 114.34 1385.64 C 116.2 1385 117.75 1385 120.85 1385 M 120.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(117.716 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan> + </text> + </g> + <g id="Graphic_2288"/> + <g id="Graphic_2287"/> + <g id="Graphic_2286"> + <path d="M 27.85 1385 L 37.15 1385 C 40.25 1385 41.8 1385 43.66 1385.64 C 45.21 1386.28 46.76 1387.88 47.38 1389.48 C 48 1391.4 48 1393 48 1396.2 L 48 1405.8 C 48 1409 48 1410.6 47.38 1412.52 C 46.76 1414.12 45.21 1415.72 43.66 1416.36 C 41.8 1417 40.25 1417 37.15 1417 L 27.85 1417 C 24.75 1417 23.2 1417 21.34 1416.36 C 19.79 1415.72 18.24 1414.12 17.62 1412.52 C 17 1410.6 17 1409 17 1405.8 L 17 1396.2 C 17 1393 17 1391.4 17.62 1389.48 C 18.24 1387.88 19.79 1386.28 21.34 1385.64 C 23.2 1385 24.75 1385 27.85 1385 M 27.85 1385" fill="#dce7fd"/> + <path d="M 27.85 1385 L 37.15 1385 C 40.25 1385 41.8 1385 43.66 1385.64 C 45.21 1386.28 46.76 1387.88 47.38 1389.48 C 48 1391.4 48 1393 48 1396.2 L 48 1405.8 C 48 1409 48 1410.6 47.38 1412.52 C 46.76 1414.12 45.21 1415.72 43.66 1416.36 C 41.8 1417 40.25 1417 37.15 1417 L 27.85 1417 C 24.75 1417 23.2 1417 21.34 1416.36 C 19.79 1415.72 18.24 1414.12 17.62 1412.52 C 17 1410.6 17 1409 17 1405.8 L 17 1396.2 C 17 1393 17 1391.4 17.62 1389.48 C 18.24 1387.88 19.79 1386.28 21.34 1385.64 C 23.2 1385 24.75 1385 27.85 1385 M 27.85 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(24.716 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan> + </text> + </g> + <g id="Graphic_2285"> + <path d="M -3.15 1385 L 6.15 1385 C 9.25 1385 10.8 1385 12.66 1385.64 C 14.21 1386.28 15.76 1387.88 16.38 1389.48 C 17 1391.4 17 1393 17 1396.2 L 17 1405.8 C 17 1409 17 1410.6 16.38 1412.52 C 15.76 1414.12 14.21 1415.72 12.66 1416.36 C 10.8 1417 9.25 1417 6.15 1417 L -3.15 1417 C -6.25 1417 -7.8 1417 -9.66 1416.36 C -11.21 1415.72 -12.76 1414.12 -13.38 1412.52 C -14 1410.6 -14 1409 -14 1405.8 L -14 1396.2 C -14 1393 -14 1391.4 -13.38 1389.48 C -12.76 1387.88 -11.21 1386.28 -9.66 1385.64 C -7.8 1385 -6.25 1385 -3.15 1385 M -3.15 1385" fill="#dce7fd"/> + <path d="M -3.15 1385 L 6.15 1385 C 9.25 1385 10.8 1385 12.66 1385.64 C 14.21 1386.28 15.76 1387.88 16.38 1389.48 C 17 1391.4 17 1393 17 1396.2 L 17 1405.8 C 17 1409 17 1410.6 16.38 1412.52 C 15.76 1414.12 14.21 1415.72 12.66 1416.36 C 10.8 1417 9.25 1417 6.15 1417 L -3.15 1417 C -6.25 1417 -7.8 1417 -9.66 1416.36 C -11.21 1415.72 -12.76 1414.12 -13.38 1412.52 C -14 1410.6 -14 1409 -14 1405.8 L -14 1396.2 C -14 1393 -14 1391.4 -13.38 1389.48 C -12.76 1387.88 -11.21 1386.28 -9.66 1385.64 C -7.8 1385 -6.25 1385 -3.15 1385 M -3.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-2.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan> + </text> + </g> + <g id="Graphic_2284"> + <path d="M -34.15 1385 L -24.85 1385 C -21.75 1385 -20.2 1385 -18.34 1385.64 C -16.79 1386.28 -15.24 1387.88 -14.62 1389.48 C -14 1391.4 -14 1393 -14 1396.2 L -14 1405.8 C -14 1409 -14 1410.6 -14.62 1412.52 C -15.24 1414.12 -16.79 1415.72 -18.34 1416.36 C -20.2 1417 -21.75 1417 -24.85 1417 L -34.15 1417 C -37.25 1417 -38.8 1417 -40.66 1416.36 C -42.21 1415.72 -43.76 1414.12 -44.38 1412.52 C -45 1410.6 -45 1409 -45 1405.8 L -45 1396.2 C -45 1393 -45 1391.4 -44.38 1389.48 C -43.76 1387.88 -42.21 1386.28 -40.66 1385.64 C -38.8 1385 -37.25 1385 -34.15 1385 M -34.15 1385" fill="#dce7fd"/> + <path d="M -34.15 1385 L -24.85 1385 C -21.75 1385 -20.2 1385 -18.34 1385.64 C -16.79 1386.28 -15.24 1387.88 -14.62 1389.48 C -14 1391.4 -14 1393 -14 1396.2 L -14 1405.8 C -14 1409 -14 1410.6 -14.62 1412.52 C -15.24 1414.12 -16.79 1415.72 -18.34 1416.36 C -20.2 1417 -21.75 1417 -24.85 1417 L -34.15 1417 C -37.25 1417 -38.8 1417 -40.66 1416.36 C -42.21 1415.72 -43.76 1414.12 -44.38 1412.52 C -45 1410.6 -45 1409 -45 1405.8 L -45 1396.2 C -45 1393 -45 1391.4 -44.38 1389.48 C -43.76 1387.88 -42.21 1386.28 -40.66 1385.64 C -38.8 1385 -37.25 1385 -34.15 1385 M -34.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-33.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan> + </text> + </g> + <g id="Graphic_2283"> + <path d="M -65.15 1385 L -55.85 1385 C -52.75 1385 -51.2 1385 -49.34 1385.64 C -47.79 1386.28 -46.24 1387.88 -45.62 1389.48 C -45 1391.4 -45 1393 -45 1396.2 L -45 1405.8 C -45 1409 -45 1410.6 -45.62 1412.52 C -46.24 1414.12 -47.79 1415.72 -49.34 1416.36 C -51.2 1417 -52.75 1417 -55.85 1417 L -65.15 1417 C -68.25 1417 -69.8 1417 -71.66 1416.36 C -73.21 1415.72 -74.76 1414.12 -75.38 1412.52 C -76 1410.6 -76 1409 -76 1405.8 L -76 1396.2 C -76 1393 -76 1391.4 -75.38 1389.48 C -74.76 1387.88 -73.21 1386.28 -71.66 1385.64 C -69.8 1385 -68.25 1385 -65.15 1385 M -65.15 1385" fill="#dce7fd"/> + <path d="M -65.15 1385 L -55.85 1385 C -52.75 1385 -51.2 1385 -49.34 1385.64 C -47.79 1386.28 -46.24 1387.88 -45.62 1389.48 C -45 1391.4 -45 1393 -45 1396.2 L -45 1405.8 C -45 1409 -45 1410.6 -45.62 1412.52 C -46.24 1414.12 -47.79 1415.72 -49.34 1416.36 C -51.2 1417 -52.75 1417 -55.85 1417 L -65.15 1417 C -68.25 1417 -69.8 1417 -71.66 1416.36 C -73.21 1415.72 -74.76 1414.12 -75.38 1412.52 C -76 1410.6 -76 1409 -76 1405.8 L -76 1396.2 C -76 1393 -76 1391.4 -75.38 1389.48 C -74.76 1387.88 -73.21 1386.28 -71.66 1385.64 C -69.8 1385 -68.25 1385 -65.15 1385 M -65.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-64.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan> + </text> + </g> + <g id="Graphic_2282"> + <path d="M -96.15 1385 L -86.85 1385 C -83.75 1385 -82.2 1385 -80.34 1385.64 C -78.79 1386.28 -77.24 1387.88 -76.62 1389.48 C -76 1391.4 -76 1393 -76 1396.2 L -76 1405.8 C -76 1409 -76 1410.6 -76.62 1412.52 C -77.24 1414.12 -78.79 1415.72 -80.34 1416.36 C -82.2 1417 -83.75 1417 -86.85 1417 L -96.15 1417 C -99.25 1417 -100.8 1417 -102.66 1416.36 C -104.21 1415.72 -105.76 1414.12 -106.38 1412.52 C -107 1410.6 -107 1409 -107 1405.8 L -107 1396.2 C -107 1393 -107 1391.4 -106.38 1389.48 C -105.76 1387.88 -104.21 1386.28 -102.66 1385.64 C -100.8 1385 -99.25 1385 -96.15 1385 M -96.15 1385" fill="#dce7fd"/> + <path d="M -96.15 1385 L -86.85 1385 C -83.75 1385 -82.2 1385 -80.34 1385.64 C -78.79 1386.28 -77.24 1387.88 -76.62 1389.48 C -76 1391.4 -76 1393 -76 1396.2 L -76 1405.8 C -76 1409 -76 1410.6 -76.62 1412.52 C -77.24 1414.12 -78.79 1415.72 -80.34 1416.36 C -82.2 1417 -83.75 1417 -86.85 1417 L -96.15 1417 C -99.25 1417 -100.8 1417 -102.66 1416.36 C -104.21 1415.72 -105.76 1414.12 -106.38 1412.52 C -107 1410.6 -107 1409 -107 1405.8 L -107 1396.2 C -107 1393 -107 1391.4 -106.38 1389.48 C -105.76 1387.88 -104.21 1386.28 -102.66 1385.64 C -100.8 1385 -99.25 1385 -96.15 1385 M -96.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-95.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan> + </text> + </g> + <g id="Graphic_2281"> + <path d="M -127.15 1385 L -117.85 1385 C -114.75 1385 -113.2 1385 -111.34 1385.64 C -109.79 1386.28 -108.24 1387.88 -107.62 1389.48 C -107 1391.4 -107 1393 -107 1396.2 L -107 1405.8 C -107 1409 -107 1410.6 -107.62 1412.52 C -108.24 1414.12 -109.79 1415.72 -111.34 1416.36 C -113.2 1417 -114.75 1417 -117.85 1417 L -127.15 1417 C -130.25 1417 -131.8 1417 -133.66 1416.36 C -135.21 1415.72 -136.76 1414.12 -137.38 1412.52 C -138 1410.6 -138 1409 -138 1405.8 L -138 1396.2 C -138 1393 -138 1391.4 -137.38 1389.48 C -136.76 1387.88 -135.21 1386.28 -133.66 1385.64 C -131.8 1385 -130.25 1385 -127.15 1385 M -127.15 1385" fill="#dce7fd"/> + <path d="M -127.15 1385 L -117.85 1385 C -114.75 1385 -113.2 1385 -111.34 1385.64 C -109.79 1386.28 -108.24 1387.88 -107.62 1389.48 C -107 1391.4 -107 1393 -107 1396.2 L -107 1405.8 C -107 1409 -107 1410.6 -107.62 1412.52 C -108.24 1414.12 -109.79 1415.72 -111.34 1416.36 C -113.2 1417 -114.75 1417 -117.85 1417 L -127.15 1417 C -130.25 1417 -131.8 1417 -133.66 1416.36 C -135.21 1415.72 -136.76 1414.12 -137.38 1412.52 C -138 1410.6 -138 1409 -138 1405.8 L -138 1396.2 C -138 1393 -138 1391.4 -137.38 1389.48 C -136.76 1387.88 -135.21 1386.28 -133.66 1385.64 C -131.8 1385 -130.25 1385 -127.15 1385 M -127.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-126.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan> + </text> + </g> + <g id="Graphic_2280"> + <path d="M -158.15 1385 L -148.85 1385 C -145.75 1385 -144.2 1385 -142.34 1385.64 C -140.79 1386.28 -139.24 1387.88 -138.62 1389.48 C -138 1391.4 -138 1393 -138 1396.2 L -138 1405.8 C -138 1409 -138 1410.6 -138.62 1412.52 C -139.24 1414.12 -140.79 1415.72 -142.34 1416.36 C -144.2 1417 -145.75 1417 -148.85 1417 L -158.15 1417 C -161.25 1417 -162.8 1417 -164.66 1416.36 C -166.21 1415.72 -167.76 1414.12 -168.38 1412.52 C -169 1410.6 -169 1409 -169 1405.8 L -169 1396.2 C -169 1393 -169 1391.4 -168.38 1389.48 C -167.76 1387.88 -166.21 1386.28 -164.66 1385.64 C -162.8 1385 -161.25 1385 -158.15 1385 M -158.15 1385" fill="#dce7fd"/> + <path d="M -158.15 1385 L -148.85 1385 C -145.75 1385 -144.2 1385 -142.34 1385.64 C -140.79 1386.28 -139.24 1387.88 -138.62 1389.48 C -138 1391.4 -138 1393 -138 1396.2 L -138 1405.8 C -138 1409 -138 1410.6 -138.62 1412.52 C -139.24 1414.12 -140.79 1415.72 -142.34 1416.36 C -144.2 1417 -145.75 1417 -148.85 1417 L -158.15 1417 C -161.25 1417 -162.8 1417 -164.66 1416.36 C -166.21 1415.72 -167.76 1414.12 -168.38 1412.52 C -169 1410.6 -169 1409 -169 1405.8 L -169 1396.2 C -169 1393 -169 1391.4 -168.38 1389.48 C -167.76 1387.88 -166.21 1386.28 -164.66 1385.64 C -162.8 1385 -161.25 1385 -158.15 1385 M -158.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-157.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan> + </text> + </g> + <g id="Graphic_2279"> + <path d="M -189.15 1385 L -179.85 1385 C -176.75 1385 -175.2 1385 -173.34 1385.64 C -171.79 1386.28 -170.24 1387.88 -169.62 1389.48 C -169 1391.4 -169 1393 -169 1396.2 L -169 1405.8 C -169 1409 -169 1410.6 -169.62 1412.52 C -170.24 1414.12 -171.79 1415.72 -173.34 1416.36 C -175.2 1417 -176.75 1417 -179.85 1417 L -189.15 1417 C -192.25 1417 -193.8 1417 -195.66 1416.36 C -197.21 1415.72 -198.76 1414.12 -199.38 1412.52 C -200 1410.6 -200 1409 -200 1405.8 L -200 1396.2 C -200 1393 -200 1391.4 -199.38 1389.48 C -198.76 1387.88 -197.21 1386.28 -195.66 1385.64 C -193.8 1385 -192.25 1385 -189.15 1385 M -189.15 1385" fill="#dce7fd"/> + <path d="M -189.15 1385 L -179.85 1385 C -176.75 1385 -175.2 1385 -173.34 1385.64 C -171.79 1386.28 -170.24 1387.88 -169.62 1389.48 C -169 1391.4 -169 1393 -169 1396.2 L -169 1405.8 C -169 1409 -169 1410.6 -169.62 1412.52 C -170.24 1414.12 -171.79 1415.72 -173.34 1416.36 C -175.2 1417 -176.75 1417 -179.85 1417 L -189.15 1417 C -192.25 1417 -193.8 1417 -195.66 1416.36 C -197.21 1415.72 -198.76 1414.12 -199.38 1412.52 C -200 1410.6 -200 1409 -200 1405.8 L -200 1396.2 C -200 1393 -200 1391.4 -199.38 1389.48 C -198.76 1387.88 -197.21 1386.28 -195.66 1385.64 C -193.8 1385 -192.25 1385 -189.15 1385 M -189.15 1385" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-188.392 1392.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">3</tspan> + </text> + </g> + <g id="Graphic_2277"> + <text transform="translate(-372 1393.552)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 3</tspan> + </text> + </g> + <g id="Graphic_2310"/> + <g id="Graphic_2309"/> + <g id="Graphic_2308"> + <path d="M 182.85 1429 L 192.15 1429 C 195.25 1429 196.8 1429 198.66 1429.64 C 200.21 1430.28 201.76 1431.88 202.38 1433.48 C 203 1435.4 203 1437 203 1440.2 L 203 1449.8 C 203 1453 203 1454.6 202.38 1456.52 C 201.76 1458.12 200.21 1459.72 198.66 1460.36 C 196.8 1461 195.25 1461 192.15 1461 L 182.85 1461 C 179.75 1461 178.2 1461 176.34 1460.36 C 174.79 1459.72 173.24 1458.12 172.62 1456.52 C 172 1454.6 172 1453 172 1449.8 L 172 1440.2 C 172 1437 172 1435.4 172.62 1433.48 C 173.24 1431.88 174.79 1430.28 176.34 1429.64 C 178.2 1429 179.75 1429 182.85 1429 M 182.85 1429" fill="#afb1ff"/> + <path d="M 182.85 1429 L 192.15 1429 C 195.25 1429 196.8 1429 198.66 1429.64 C 200.21 1430.28 201.76 1431.88 202.38 1433.48 C 203 1435.4 203 1437 203 1440.2 L 203 1449.8 C 203 1453 203 1454.6 202.38 1456.52 C 201.76 1458.12 200.21 1459.72 198.66 1460.36 C 196.8 1461 195.25 1461 192.15 1461 L 182.85 1461 C 179.75 1461 178.2 1461 176.34 1460.36 C 174.79 1459.72 173.24 1458.12 172.62 1456.52 C 172 1454.6 172 1453 172 1449.8 L 172 1440.2 C 172 1437 172 1435.4 172.62 1433.48 C 173.24 1431.88 174.79 1430.28 176.34 1429.64 C 178.2 1429 179.75 1429 182.85 1429 M 182.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(179.716 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">14</tspan> + </text> + </g> + <g id="Graphic_2307"> + <path d="M 151.85 1429 L 161.15 1429 C 164.25 1429 165.8 1429 167.66 1429.64 C 169.21 1430.28 170.76 1431.88 171.38 1433.48 C 172 1435.4 172 1437 172 1440.2 L 172 1449.8 C 172 1453 172 1454.6 171.38 1456.52 C 170.76 1458.12 169.21 1459.72 167.66 1460.36 C 165.8 1461 164.25 1461 161.15 1461 L 151.85 1461 C 148.75 1461 147.2 1461 145.34 1460.36 C 143.79 1459.72 142.24 1458.12 141.62 1456.52 C 141 1454.6 141 1453 141 1449.8 L 141 1440.2 C 141 1437 141 1435.4 141.62 1433.48 C 142.24 1431.88 143.79 1430.28 145.34 1429.64 C 147.2 1429 148.75 1429 151.85 1429 M 151.85 1429" fill="#afb1ff"/> + <path d="M 151.85 1429 L 161.15 1429 C 164.25 1429 165.8 1429 167.66 1429.64 C 169.21 1430.28 170.76 1431.88 171.38 1433.48 C 172 1435.4 172 1437 172 1440.2 L 172 1449.8 C 172 1453 172 1454.6 171.38 1456.52 C 170.76 1458.12 169.21 1459.72 167.66 1460.36 C 165.8 1461 164.25 1461 161.15 1461 L 151.85 1461 C 148.75 1461 147.2 1461 145.34 1460.36 C 143.79 1459.72 142.24 1458.12 141.62 1456.52 C 141 1454.6 141 1453 141 1449.8 L 141 1440.2 C 141 1437 141 1435.4 141.62 1433.48 C 142.24 1431.88 143.79 1430.28 145.34 1429.64 C 147.2 1429 148.75 1429 151.85 1429 M 151.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(148.716 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan> + </text> + </g> + <g id="Graphic_2306"> + <path d="M 120.85 1429 L 130.15 1429 C 133.25 1429 134.8 1429 136.66 1429.64 C 138.21 1430.28 139.76 1431.88 140.38 1433.48 C 141 1435.4 141 1437 141 1440.2 L 141 1449.8 C 141 1453 141 1454.6 140.38 1456.52 C 139.76 1458.12 138.21 1459.72 136.66 1460.36 C 134.8 1461 133.25 1461 130.15 1461 L 120.85 1461 C 117.75 1461 116.2 1461 114.34 1460.36 C 112.79 1459.72 111.24 1458.12 110.62 1456.52 C 110 1454.6 110 1453 110 1449.8 L 110 1440.2 C 110 1437 110 1435.4 110.62 1433.48 C 111.24 1431.88 112.79 1430.28 114.34 1429.64 C 116.2 1429 117.75 1429 120.85 1429 M 120.85 1429" fill="#afb1ff"/> + <path d="M 120.85 1429 L 130.15 1429 C 133.25 1429 134.8 1429 136.66 1429.64 C 138.21 1430.28 139.76 1431.88 140.38 1433.48 C 141 1435.4 141 1437 141 1440.2 L 141 1449.8 C 141 1453 141 1454.6 140.38 1456.52 C 139.76 1458.12 138.21 1459.72 136.66 1460.36 C 134.8 1461 133.25 1461 130.15 1461 L 120.85 1461 C 117.75 1461 116.2 1461 114.34 1460.36 C 112.79 1459.72 111.24 1458.12 110.62 1456.52 C 110 1454.6 110 1453 110 1449.8 L 110 1440.2 C 110 1437 110 1435.4 110.62 1433.48 C 111.24 1431.88 112.79 1430.28 114.34 1429.64 C 116.2 1429 117.75 1429 120.85 1429 M 120.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(117.716 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan> + </text> + </g> + <g id="Graphic_2305"/> + <g id="Graphic_2304"/> + <g id="Graphic_2303"> + <path d="M 27.85 1429 L 37.15 1429 C 40.25 1429 41.8 1429 43.66 1429.64 C 45.21 1430.28 46.76 1431.88 47.38 1433.48 C 48 1435.4 48 1437 48 1440.2 L 48 1449.8 C 48 1453 48 1454.6 47.38 1456.52 C 46.76 1458.12 45.21 1459.72 43.66 1460.36 C 41.8 1461 40.25 1461 37.15 1461 L 27.85 1461 C 24.75 1461 23.2 1461 21.34 1460.36 C 19.79 1459.72 18.24 1458.12 17.62 1456.52 C 17 1454.6 17 1453 17 1449.8 L 17 1440.2 C 17 1437 17 1435.4 17.62 1433.48 C 18.24 1431.88 19.79 1430.28 21.34 1429.64 C 23.2 1429 24.75 1429 27.85 1429 M 27.85 1429" fill="#dce7fd"/> + <path d="M 27.85 1429 L 37.15 1429 C 40.25 1429 41.8 1429 43.66 1429.64 C 45.21 1430.28 46.76 1431.88 47.38 1433.48 C 48 1435.4 48 1437 48 1440.2 L 48 1449.8 C 48 1453 48 1454.6 47.38 1456.52 C 46.76 1458.12 45.21 1459.72 43.66 1460.36 C 41.8 1461 40.25 1461 37.15 1461 L 27.85 1461 C 24.75 1461 23.2 1461 21.34 1460.36 C 19.79 1459.72 18.24 1458.12 17.62 1456.52 C 17 1454.6 17 1453 17 1449.8 L 17 1440.2 C 17 1437 17 1435.4 17.62 1433.48 C 18.24 1431.88 19.79 1430.28 21.34 1429.64 C 23.2 1429 24.75 1429 27.85 1429 M 27.85 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(24.716 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan> + </text> + </g> + <g id="Graphic_2302"> + <path d="M -3.15 1429 L 6.15 1429 C 9.25 1429 10.8 1429 12.66 1429.64 C 14.21 1430.28 15.76 1431.88 16.38 1433.48 C 17 1435.4 17 1437 17 1440.2 L 17 1449.8 C 17 1453 17 1454.6 16.38 1456.52 C 15.76 1458.12 14.21 1459.72 12.66 1460.36 C 10.8 1461 9.25 1461 6.15 1461 L -3.15 1461 C -6.25 1461 -7.8 1461 -9.66 1460.36 C -11.21 1459.72 -12.76 1458.12 -13.38 1456.52 C -14 1454.6 -14 1453 -14 1449.8 L -14 1440.2 C -14 1437 -14 1435.4 -13.38 1433.48 C -12.76 1431.88 -11.21 1430.28 -9.66 1429.64 C -7.8 1429 -6.25 1429 -3.15 1429 M -3.15 1429" fill="#dce7fd"/> + <path d="M -3.15 1429 L 6.15 1429 C 9.25 1429 10.8 1429 12.66 1429.64 C 14.21 1430.28 15.76 1431.88 16.38 1433.48 C 17 1435.4 17 1437 17 1440.2 L 17 1449.8 C 17 1453 17 1454.6 16.38 1456.52 C 15.76 1458.12 14.21 1459.72 12.66 1460.36 C 10.8 1461 9.25 1461 6.15 1461 L -3.15 1461 C -6.25 1461 -7.8 1461 -9.66 1460.36 C -11.21 1459.72 -12.76 1458.12 -13.38 1456.52 C -14 1454.6 -14 1453 -14 1449.8 L -14 1440.2 C -14 1437 -14 1435.4 -13.38 1433.48 C -12.76 1431.88 -11.21 1430.28 -9.66 1429.64 C -7.8 1429 -6.25 1429 -3.15 1429 M -3.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-6.284 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan> + </text> + </g> + <g id="Graphic_2301"> + <path d="M -34.15 1429 L -24.85 1429 C -21.75 1429 -20.2 1429 -18.34 1429.64 C -16.79 1430.28 -15.24 1431.88 -14.62 1433.48 C -14 1435.4 -14 1437 -14 1440.2 L -14 1449.8 C -14 1453 -14 1454.6 -14.62 1456.52 C -15.24 1458.12 -16.79 1459.72 -18.34 1460.36 C -20.2 1461 -21.75 1461 -24.85 1461 L -34.15 1461 C -37.25 1461 -38.8 1461 -40.66 1460.36 C -42.21 1459.72 -43.76 1458.12 -44.38 1456.52 C -45 1454.6 -45 1453 -45 1449.8 L -45 1440.2 C -45 1437 -45 1435.4 -44.38 1433.48 C -43.76 1431.88 -42.21 1430.28 -40.66 1429.64 C -38.8 1429 -37.25 1429 -34.15 1429 M -34.15 1429" fill="#dce7fd"/> + <path d="M -34.15 1429 L -24.85 1429 C -21.75 1429 -20.2 1429 -18.34 1429.64 C -16.79 1430.28 -15.24 1431.88 -14.62 1433.48 C -14 1435.4 -14 1437 -14 1440.2 L -14 1449.8 C -14 1453 -14 1454.6 -14.62 1456.52 C -15.24 1458.12 -16.79 1459.72 -18.34 1460.36 C -20.2 1461 -21.75 1461 -24.85 1461 L -34.15 1461 C -37.25 1461 -38.8 1461 -40.66 1460.36 C -42.21 1459.72 -43.76 1458.12 -44.38 1456.52 C -45 1454.6 -45 1453 -45 1449.8 L -45 1440.2 C -45 1437 -45 1435.4 -44.38 1433.48 C -43.76 1431.88 -42.21 1430.28 -40.66 1429.64 C -38.8 1429 -37.25 1429 -34.15 1429 M -34.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-33.392 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan> + </text> + </g> + <g id="Graphic_2300"> + <path d="M -65.15 1429 L -55.85 1429 C -52.75 1429 -51.2 1429 -49.34 1429.64 C -47.79 1430.28 -46.24 1431.88 -45.62 1433.48 C -45 1435.4 -45 1437 -45 1440.2 L -45 1449.8 C -45 1453 -45 1454.6 -45.62 1456.52 C -46.24 1458.12 -47.79 1459.72 -49.34 1460.36 C -51.2 1461 -52.75 1461 -55.85 1461 L -65.15 1461 C -68.25 1461 -69.8 1461 -71.66 1460.36 C -73.21 1459.72 -74.76 1458.12 -75.38 1456.52 C -76 1454.6 -76 1453 -76 1449.8 L -76 1440.2 C -76 1437 -76 1435.4 -75.38 1433.48 C -74.76 1431.88 -73.21 1430.28 -71.66 1429.64 C -69.8 1429 -68.25 1429 -65.15 1429 M -65.15 1429" fill="#dce7fd"/> + <path d="M -65.15 1429 L -55.85 1429 C -52.75 1429 -51.2 1429 -49.34 1429.64 C -47.79 1430.28 -46.24 1431.88 -45.62 1433.48 C -45 1435.4 -45 1437 -45 1440.2 L -45 1449.8 C -45 1453 -45 1454.6 -45.62 1456.52 C -46.24 1458.12 -47.79 1459.72 -49.34 1460.36 C -51.2 1461 -52.75 1461 -55.85 1461 L -65.15 1461 C -68.25 1461 -69.8 1461 -71.66 1460.36 C -73.21 1459.72 -74.76 1458.12 -75.38 1456.52 C -76 1454.6 -76 1453 -76 1449.8 L -76 1440.2 C -76 1437 -76 1435.4 -75.38 1433.48 C -74.76 1431.88 -73.21 1430.28 -71.66 1429.64 C -69.8 1429 -68.25 1429 -65.15 1429 M -65.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-64.392 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan> + </text> + </g> + <g id="Graphic_2299"> + <path d="M -96.15 1429 L -86.85 1429 C -83.75 1429 -82.2 1429 -80.34 1429.64 C -78.79 1430.28 -77.24 1431.88 -76.62 1433.48 C -76 1435.4 -76 1437 -76 1440.2 L -76 1449.8 C -76 1453 -76 1454.6 -76.62 1456.52 C -77.24 1458.12 -78.79 1459.72 -80.34 1460.36 C -82.2 1461 -83.75 1461 -86.85 1461 L -96.15 1461 C -99.25 1461 -100.8 1461 -102.66 1460.36 C -104.21 1459.72 -105.76 1458.12 -106.38 1456.52 C -107 1454.6 -107 1453 -107 1449.8 L -107 1440.2 C -107 1437 -107 1435.4 -106.38 1433.48 C -105.76 1431.88 -104.21 1430.28 -102.66 1429.64 C -100.8 1429 -99.25 1429 -96.15 1429 M -96.15 1429" fill="#dce7fd"/> + <path d="M -96.15 1429 L -86.85 1429 C -83.75 1429 -82.2 1429 -80.34 1429.64 C -78.79 1430.28 -77.24 1431.88 -76.62 1433.48 C -76 1435.4 -76 1437 -76 1440.2 L -76 1449.8 C -76 1453 -76 1454.6 -76.62 1456.52 C -77.24 1458.12 -78.79 1459.72 -80.34 1460.36 C -82.2 1461 -83.75 1461 -86.85 1461 L -96.15 1461 C -99.25 1461 -100.8 1461 -102.66 1460.36 C -104.21 1459.72 -105.76 1458.12 -106.38 1456.52 C -107 1454.6 -107 1453 -107 1449.8 L -107 1440.2 C -107 1437 -107 1435.4 -106.38 1433.48 C -105.76 1431.88 -104.21 1430.28 -102.66 1429.64 C -100.8 1429 -99.25 1429 -96.15 1429 M -96.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-95.392 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan> + </text> + </g> + <g id="Graphic_2298"> + <path d="M -127.15 1429 L -117.85 1429 C -114.75 1429 -113.2 1429 -111.34 1429.64 C -109.79 1430.28 -108.24 1431.88 -107.62 1433.48 C -107 1435.4 -107 1437 -107 1440.2 L -107 1449.8 C -107 1453 -107 1454.6 -107.62 1456.52 C -108.24 1458.12 -109.79 1459.72 -111.34 1460.36 C -113.2 1461 -114.75 1461 -117.85 1461 L -127.15 1461 C -130.25 1461 -131.8 1461 -133.66 1460.36 C -135.21 1459.72 -136.76 1458.12 -137.38 1456.52 C -138 1454.6 -138 1453 -138 1449.8 L -138 1440.2 C -138 1437 -138 1435.4 -137.38 1433.48 C -136.76 1431.88 -135.21 1430.28 -133.66 1429.64 C -131.8 1429 -130.25 1429 -127.15 1429 M -127.15 1429" fill="#dce7fd"/> + <path d="M -127.15 1429 L -117.85 1429 C -114.75 1429 -113.2 1429 -111.34 1429.64 C -109.79 1430.28 -108.24 1431.88 -107.62 1433.48 C -107 1435.4 -107 1437 -107 1440.2 L -107 1449.8 C -107 1453 -107 1454.6 -107.62 1456.52 C -108.24 1458.12 -109.79 1459.72 -111.34 1460.36 C -113.2 1461 -114.75 1461 -117.85 1461 L -127.15 1461 C -130.25 1461 -131.8 1461 -133.66 1460.36 C -135.21 1459.72 -136.76 1458.12 -137.38 1456.52 C -138 1454.6 -138 1453 -138 1449.8 L -138 1440.2 C -138 1437 -138 1435.4 -137.38 1433.48 C -136.76 1431.88 -135.21 1430.28 -133.66 1429.64 C -131.8 1429 -130.25 1429 -127.15 1429 M -127.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-126.392 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan> + </text> + </g> + <g id="Graphic_2297"> + <path d="M -158.15 1429 L -148.85 1429 C -145.75 1429 -144.2 1429 -142.34 1429.64 C -140.79 1430.28 -139.24 1431.88 -138.62 1433.48 C -138 1435.4 -138 1437 -138 1440.2 L -138 1449.8 C -138 1453 -138 1454.6 -138.62 1456.52 C -139.24 1458.12 -140.79 1459.72 -142.34 1460.36 C -144.2 1461 -145.75 1461 -148.85 1461 L -158.15 1461 C -161.25 1461 -162.8 1461 -164.66 1460.36 C -166.21 1459.72 -167.76 1458.12 -168.38 1456.52 C -169 1454.6 -169 1453 -169 1449.8 L -169 1440.2 C -169 1437 -169 1435.4 -168.38 1433.48 C -167.76 1431.88 -166.21 1430.28 -164.66 1429.64 C -162.8 1429 -161.25 1429 -158.15 1429 M -158.15 1429" fill="#dce7fd"/> + <path d="M -158.15 1429 L -148.85 1429 C -145.75 1429 -144.2 1429 -142.34 1429.64 C -140.79 1430.28 -139.24 1431.88 -138.62 1433.48 C -138 1435.4 -138 1437 -138 1440.2 L -138 1449.8 C -138 1453 -138 1454.6 -138.62 1456.52 C -139.24 1458.12 -140.79 1459.72 -142.34 1460.36 C -144.2 1461 -145.75 1461 -148.85 1461 L -158.15 1461 C -161.25 1461 -162.8 1461 -164.66 1460.36 C -166.21 1459.72 -167.76 1458.12 -168.38 1456.52 C -169 1454.6 -169 1453 -169 1449.8 L -169 1440.2 C -169 1437 -169 1435.4 -168.38 1433.48 C -167.76 1431.88 -166.21 1430.28 -164.66 1429.64 C -162.8 1429 -161.25 1429 -158.15 1429 M -158.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-157.392 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan> + </text> + </g> + <g id="Graphic_2296"> + <path d="M -189.15 1429 L -179.85 1429 C -176.75 1429 -175.2 1429 -173.34 1429.64 C -171.79 1430.28 -170.24 1431.88 -169.62 1433.48 C -169 1435.4 -169 1437 -169 1440.2 L -169 1449.8 C -169 1453 -169 1454.6 -169.62 1456.52 C -170.24 1458.12 -171.79 1459.72 -173.34 1460.36 C -175.2 1461 -176.75 1461 -179.85 1461 L -189.15 1461 C -192.25 1461 -193.8 1461 -195.66 1460.36 C -197.21 1459.72 -198.76 1458.12 -199.38 1456.52 C -200 1454.6 -200 1453 -200 1449.8 L -200 1440.2 C -200 1437 -200 1435.4 -199.38 1433.48 C -198.76 1431.88 -197.21 1430.28 -195.66 1429.64 C -193.8 1429 -192.25 1429 -189.15 1429 M -189.15 1429" fill="#dce7fd"/> + <path d="M -189.15 1429 L -179.85 1429 C -176.75 1429 -175.2 1429 -173.34 1429.64 C -171.79 1430.28 -170.24 1431.88 -169.62 1433.48 C -169 1435.4 -169 1437 -169 1440.2 L -169 1449.8 C -169 1453 -169 1454.6 -169.62 1456.52 C -170.24 1458.12 -171.79 1459.72 -173.34 1460.36 C -175.2 1461 -176.75 1461 -179.85 1461 L -189.15 1461 C -192.25 1461 -193.8 1461 -195.66 1460.36 C -197.21 1459.72 -198.76 1458.12 -199.38 1456.52 C -200 1454.6 -200 1453 -200 1449.8 L -200 1440.2 C -200 1437 -200 1435.4 -199.38 1433.48 C -198.76 1431.88 -197.21 1430.28 -195.66 1429.64 C -193.8 1429 -192.25 1429 -189.15 1429 M -189.15 1429" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-188.392 1436.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">4</tspan> + </text> + </g> + <g id="Graphic_2294"> + <text transform="translate(-372 1437.552)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 4</tspan> + </text> + </g> + <g id="Graphic_2327"/> + <g id="Graphic_2326"/> + <g id="Graphic_2325"> + <path d="M 182.85 1473 L 192.15 1473 C 195.25 1473 196.8 1473 198.66 1473.64 C 200.21 1474.28 201.76 1475.88 202.38 1477.48 C 203 1479.4 203 1481 203 1484.2 L 203 1493.8 C 203 1497 203 1498.6 202.38 1500.52 C 201.76 1502.12 200.21 1503.72 198.66 1504.36 C 196.8 1505 195.25 1505 192.15 1505 L 182.85 1505 C 179.75 1505 178.2 1505 176.34 1504.36 C 174.79 1503.72 173.24 1502.12 172.62 1500.52 C 172 1498.6 172 1497 172 1493.8 L 172 1484.2 C 172 1481 172 1479.4 172.62 1477.48 C 173.24 1475.88 174.79 1474.28 176.34 1473.64 C 178.2 1473 179.75 1473 182.85 1473 M 182.85 1473" fill="#afb1ff"/> + <path d="M 182.85 1473 L 192.15 1473 C 195.25 1473 196.8 1473 198.66 1473.64 C 200.21 1474.28 201.76 1475.88 202.38 1477.48 C 203 1479.4 203 1481 203 1484.2 L 203 1493.8 C 203 1497 203 1498.6 202.38 1500.52 C 201.76 1502.12 200.21 1503.72 198.66 1504.36 C 196.8 1505 195.25 1505 192.15 1505 L 182.85 1505 C 179.75 1505 178.2 1505 176.34 1504.36 C 174.79 1503.72 173.24 1502.12 172.62 1500.52 C 172 1498.6 172 1497 172 1493.8 L 172 1484.2 C 172 1481 172 1479.4 172.62 1477.48 C 173.24 1475.88 174.79 1474.28 176.34 1473.64 C 178.2 1473 179.75 1473 182.85 1473 M 182.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(179.716 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">15</tspan> + </text> + </g> + <g id="Graphic_2324"> + <path d="M 151.85 1473 L 161.15 1473 C 164.25 1473 165.8 1473 167.66 1473.64 C 169.21 1474.28 170.76 1475.88 171.38 1477.48 C 172 1479.4 172 1481 172 1484.2 L 172 1493.8 C 172 1497 172 1498.6 171.38 1500.52 C 170.76 1502.12 169.21 1503.72 167.66 1504.36 C 165.8 1505 164.25 1505 161.15 1505 L 151.85 1505 C 148.75 1505 147.2 1505 145.34 1504.36 C 143.79 1503.72 142.24 1502.12 141.62 1500.52 C 141 1498.6 141 1497 141 1493.8 L 141 1484.2 C 141 1481 141 1479.4 141.62 1477.48 C 142.24 1475.88 143.79 1474.28 145.34 1473.64 C 147.2 1473 148.75 1473 151.85 1473 M 151.85 1473" fill="#afb1ff"/> + <path d="M 151.85 1473 L 161.15 1473 C 164.25 1473 165.8 1473 167.66 1473.64 C 169.21 1474.28 170.76 1475.88 171.38 1477.48 C 172 1479.4 172 1481 172 1484.2 L 172 1493.8 C 172 1497 172 1498.6 171.38 1500.52 C 170.76 1502.12 169.21 1503.72 167.66 1504.36 C 165.8 1505 164.25 1505 161.15 1505 L 151.85 1505 C 148.75 1505 147.2 1505 145.34 1504.36 C 143.79 1503.72 142.24 1502.12 141.62 1500.52 C 141 1498.6 141 1497 141 1493.8 L 141 1484.2 C 141 1481 141 1479.4 141.62 1477.48 C 142.24 1475.88 143.79 1474.28 145.34 1473.64 C 147.2 1473 148.75 1473 151.85 1473 M 151.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(148.716 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">14</tspan> + </text> + </g> + <g id="Graphic_2323"> + <path d="M 120.85 1473 L 130.15 1473 C 133.25 1473 134.8 1473 136.66 1473.64 C 138.21 1474.28 139.76 1475.88 140.38 1477.48 C 141 1479.4 141 1481 141 1484.2 L 141 1493.8 C 141 1497 141 1498.6 140.38 1500.52 C 139.76 1502.12 138.21 1503.72 136.66 1504.36 C 134.8 1505 133.25 1505 130.15 1505 L 120.85 1505 C 117.75 1505 116.2 1505 114.34 1504.36 C 112.79 1503.72 111.24 1502.12 110.62 1500.52 C 110 1498.6 110 1497 110 1493.8 L 110 1484.2 C 110 1481 110 1479.4 110.62 1477.48 C 111.24 1475.88 112.79 1474.28 114.34 1473.64 C 116.2 1473 117.75 1473 120.85 1473 M 120.85 1473" fill="#afb1ff"/> + <path d="M 120.85 1473 L 130.15 1473 C 133.25 1473 134.8 1473 136.66 1473.64 C 138.21 1474.28 139.76 1475.88 140.38 1477.48 C 141 1479.4 141 1481 141 1484.2 L 141 1493.8 C 141 1497 141 1498.6 140.38 1500.52 C 139.76 1502.12 138.21 1503.72 136.66 1504.36 C 134.8 1505 133.25 1505 130.15 1505 L 120.85 1505 C 117.75 1505 116.2 1505 114.34 1504.36 C 112.79 1503.72 111.24 1502.12 110.62 1500.52 C 110 1498.6 110 1497 110 1493.8 L 110 1484.2 C 110 1481 110 1479.4 110.62 1477.48 C 111.24 1475.88 112.79 1474.28 114.34 1473.64 C 116.2 1473 117.75 1473 120.85 1473 M 120.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(117.716 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">13</tspan> + </text> + </g> + <g id="Graphic_2322"/> + <g id="Graphic_2321"/> + <g id="Graphic_2320"> + <path d="M 27.85 1473 L 37.15 1473 C 40.25 1473 41.8 1473 43.66 1473.64 C 45.21 1474.28 46.76 1475.88 47.38 1477.48 C 48 1479.4 48 1481 48 1484.2 L 48 1493.8 C 48 1497 48 1498.6 47.38 1500.52 C 46.76 1502.12 45.21 1503.72 43.66 1504.36 C 41.8 1505 40.25 1505 37.15 1505 L 27.85 1505 C 24.75 1505 23.2 1505 21.34 1504.36 C 19.79 1503.72 18.24 1502.12 17.62 1500.52 C 17 1498.6 17 1497 17 1493.8 L 17 1484.2 C 17 1481 17 1479.4 17.62 1477.48 C 18.24 1475.88 19.79 1474.28 21.34 1473.64 C 23.2 1473 24.75 1473 27.85 1473 M 27.85 1473" fill="#dce7fd"/> + <path d="M 27.85 1473 L 37.15 1473 C 40.25 1473 41.8 1473 43.66 1473.64 C 45.21 1474.28 46.76 1475.88 47.38 1477.48 C 48 1479.4 48 1481 48 1484.2 L 48 1493.8 C 48 1497 48 1498.6 47.38 1500.52 C 46.76 1502.12 45.21 1503.72 43.66 1504.36 C 41.8 1505 40.25 1505 37.15 1505 L 27.85 1505 C 24.75 1505 23.2 1505 21.34 1504.36 C 19.79 1503.72 18.24 1502.12 17.62 1500.52 C 17 1498.6 17 1497 17 1493.8 L 17 1484.2 C 17 1481 17 1479.4 17.62 1477.48 C 18.24 1475.88 19.79 1474.28 21.34 1473.64 C 23.2 1473 24.75 1473 27.85 1473 M 27.85 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(24.716 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">12</tspan> + </text> + </g> + <g id="Graphic_2319"> + <path d="M -3.15 1473 L 6.15 1473 C 9.25 1473 10.8 1473 12.66 1473.64 C 14.21 1474.28 15.76 1475.88 16.38 1477.48 C 17 1479.4 17 1481 17 1484.2 L 17 1493.8 C 17 1497 17 1498.6 16.38 1500.52 C 15.76 1502.12 14.21 1503.72 12.66 1504.36 C 10.8 1505 9.25 1505 6.15 1505 L -3.15 1505 C -6.25 1505 -7.8 1505 -9.66 1504.36 C -11.21 1503.72 -12.76 1502.12 -13.38 1500.52 C -14 1498.6 -14 1497 -14 1493.8 L -14 1484.2 C -14 1481 -14 1479.4 -13.38 1477.48 C -12.76 1475.88 -11.21 1474.28 -9.66 1473.64 C -7.8 1473 -6.25 1473 -3.15 1473 M -3.15 1473" fill="#dce7fd"/> + <path d="M -3.15 1473 L 6.15 1473 C 9.25 1473 10.8 1473 12.66 1473.64 C 14.21 1474.28 15.76 1475.88 16.38 1477.48 C 17 1479.4 17 1481 17 1484.2 L 17 1493.8 C 17 1497 17 1498.6 16.38 1500.52 C 15.76 1502.12 14.21 1503.72 12.66 1504.36 C 10.8 1505 9.25 1505 6.15 1505 L -3.15 1505 C -6.25 1505 -7.8 1505 -9.66 1504.36 C -11.21 1503.72 -12.76 1502.12 -13.38 1500.52 C -14 1498.6 -14 1497 -14 1493.8 L -14 1484.2 C -14 1481 -14 1479.4 -13.38 1477.48 C -12.76 1475.88 -11.21 1474.28 -9.66 1473.64 C -7.8 1473 -6.25 1473 -3.15 1473 M -3.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-6.284 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">11</tspan> + </text> + </g> + <g id="Graphic_2318"> + <path d="M -34.15 1473 L -24.85 1473 C -21.75 1473 -20.2 1473 -18.34 1473.64 C -16.79 1474.28 -15.24 1475.88 -14.62 1477.48 C -14 1479.4 -14 1481 -14 1484.2 L -14 1493.8 C -14 1497 -14 1498.6 -14.62 1500.52 C -15.24 1502.12 -16.79 1503.72 -18.34 1504.36 C -20.2 1505 -21.75 1505 -24.85 1505 L -34.15 1505 C -37.25 1505 -38.8 1505 -40.66 1504.36 C -42.21 1503.72 -43.76 1502.12 -44.38 1500.52 C -45 1498.6 -45 1497 -45 1493.8 L -45 1484.2 C -45 1481 -45 1479.4 -44.38 1477.48 C -43.76 1475.88 -42.21 1474.28 -40.66 1473.64 C -38.8 1473 -37.25 1473 -34.15 1473 M -34.15 1473" fill="#dce7fd"/> + <path d="M -34.15 1473 L -24.85 1473 C -21.75 1473 -20.2 1473 -18.34 1473.64 C -16.79 1474.28 -15.24 1475.88 -14.62 1477.48 C -14 1479.4 -14 1481 -14 1484.2 L -14 1493.8 C -14 1497 -14 1498.6 -14.62 1500.52 C -15.24 1502.12 -16.79 1503.72 -18.34 1504.36 C -20.2 1505 -21.75 1505 -24.85 1505 L -34.15 1505 C -37.25 1505 -38.8 1505 -40.66 1504.36 C -42.21 1503.72 -43.76 1502.12 -44.38 1500.52 C -45 1498.6 -45 1497 -45 1493.8 L -45 1484.2 C -45 1481 -45 1479.4 -44.38 1477.48 C -43.76 1475.88 -42.21 1474.28 -40.66 1473.64 C -38.8 1473 -37.25 1473 -34.15 1473 M -34.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-37.284 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">10</tspan> + </text> + </g> + <g id="Graphic_2317"> + <path d="M -65.15 1473 L -55.85 1473 C -52.75 1473 -51.2 1473 -49.34 1473.64 C -47.79 1474.28 -46.24 1475.88 -45.62 1477.48 C -45 1479.4 -45 1481 -45 1484.2 L -45 1493.8 C -45 1497 -45 1498.6 -45.62 1500.52 C -46.24 1502.12 -47.79 1503.72 -49.34 1504.36 C -51.2 1505 -52.75 1505 -55.85 1505 L -65.15 1505 C -68.25 1505 -69.8 1505 -71.66 1504.36 C -73.21 1503.72 -74.76 1502.12 -75.38 1500.52 C -76 1498.6 -76 1497 -76 1493.8 L -76 1484.2 C -76 1481 -76 1479.4 -75.38 1477.48 C -74.76 1475.88 -73.21 1474.28 -71.66 1473.64 C -69.8 1473 -68.25 1473 -65.15 1473 M -65.15 1473" fill="#dce7fd"/> + <path d="M -65.15 1473 L -55.85 1473 C -52.75 1473 -51.2 1473 -49.34 1473.64 C -47.79 1474.28 -46.24 1475.88 -45.62 1477.48 C -45 1479.4 -45 1481 -45 1484.2 L -45 1493.8 C -45 1497 -45 1498.6 -45.62 1500.52 C -46.24 1502.12 -47.79 1503.72 -49.34 1504.36 C -51.2 1505 -52.75 1505 -55.85 1505 L -65.15 1505 C -68.25 1505 -69.8 1505 -71.66 1504.36 C -73.21 1503.72 -74.76 1502.12 -75.38 1500.52 C -76 1498.6 -76 1497 -76 1493.8 L -76 1484.2 C -76 1481 -76 1479.4 -75.38 1477.48 C -74.76 1475.88 -73.21 1474.28 -71.66 1473.64 C -69.8 1473 -68.25 1473 -65.15 1473 M -65.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-64.392 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">9</tspan> + </text> + </g> + <g id="Graphic_2316"> + <path d="M -96.15 1473 L -86.85 1473 C -83.75 1473 -82.2 1473 -80.34 1473.64 C -78.79 1474.28 -77.24 1475.88 -76.62 1477.48 C -76 1479.4 -76 1481 -76 1484.2 L -76 1493.8 C -76 1497 -76 1498.6 -76.62 1500.52 C -77.24 1502.12 -78.79 1503.72 -80.34 1504.36 C -82.2 1505 -83.75 1505 -86.85 1505 L -96.15 1505 C -99.25 1505 -100.8 1505 -102.66 1504.36 C -104.21 1503.72 -105.76 1502.12 -106.38 1500.52 C -107 1498.6 -107 1497 -107 1493.8 L -107 1484.2 C -107 1481 -107 1479.4 -106.38 1477.48 C -105.76 1475.88 -104.21 1474.28 -102.66 1473.64 C -100.8 1473 -99.25 1473 -96.15 1473 M -96.15 1473" fill="#dce7fd"/> + <path d="M -96.15 1473 L -86.85 1473 C -83.75 1473 -82.2 1473 -80.34 1473.64 C -78.79 1474.28 -77.24 1475.88 -76.62 1477.48 C -76 1479.4 -76 1481 -76 1484.2 L -76 1493.8 C -76 1497 -76 1498.6 -76.62 1500.52 C -77.24 1502.12 -78.79 1503.72 -80.34 1504.36 C -82.2 1505 -83.75 1505 -86.85 1505 L -96.15 1505 C -99.25 1505 -100.8 1505 -102.66 1504.36 C -104.21 1503.72 -105.76 1502.12 -106.38 1500.52 C -107 1498.6 -107 1497 -107 1493.8 L -107 1484.2 C -107 1481 -107 1479.4 -106.38 1477.48 C -105.76 1475.88 -104.21 1474.28 -102.66 1473.64 C -100.8 1473 -99.25 1473 -96.15 1473 M -96.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-95.392 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">8</tspan> + </text> + </g> + <g id="Graphic_2315"> + <path d="M -127.15 1473 L -117.85 1473 C -114.75 1473 -113.2 1473 -111.34 1473.64 C -109.79 1474.28 -108.24 1475.88 -107.62 1477.48 C -107 1479.4 -107 1481 -107 1484.2 L -107 1493.8 C -107 1497 -107 1498.6 -107.62 1500.52 C -108.24 1502.12 -109.79 1503.72 -111.34 1504.36 C -113.2 1505 -114.75 1505 -117.85 1505 L -127.15 1505 C -130.25 1505 -131.8 1505 -133.66 1504.36 C -135.21 1503.72 -136.76 1502.12 -137.38 1500.52 C -138 1498.6 -138 1497 -138 1493.8 L -138 1484.2 C -138 1481 -138 1479.4 -137.38 1477.48 C -136.76 1475.88 -135.21 1474.28 -133.66 1473.64 C -131.8 1473 -130.25 1473 -127.15 1473 M -127.15 1473" fill="#dce7fd"/> + <path d="M -127.15 1473 L -117.85 1473 C -114.75 1473 -113.2 1473 -111.34 1473.64 C -109.79 1474.28 -108.24 1475.88 -107.62 1477.48 C -107 1479.4 -107 1481 -107 1484.2 L -107 1493.8 C -107 1497 -107 1498.6 -107.62 1500.52 C -108.24 1502.12 -109.79 1503.72 -111.34 1504.36 C -113.2 1505 -114.75 1505 -117.85 1505 L -127.15 1505 C -130.25 1505 -131.8 1505 -133.66 1504.36 C -135.21 1503.72 -136.76 1502.12 -137.38 1500.52 C -138 1498.6 -138 1497 -138 1493.8 L -138 1484.2 C -138 1481 -138 1479.4 -137.38 1477.48 C -136.76 1475.88 -135.21 1474.28 -133.66 1473.64 C -131.8 1473 -130.25 1473 -127.15 1473 M -127.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-126.392 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">7</tspan> + </text> + </g> + <g id="Graphic_2314"> + <path d="M -158.15 1473 L -148.85 1473 C -145.75 1473 -144.2 1473 -142.34 1473.64 C -140.79 1474.28 -139.24 1475.88 -138.62 1477.48 C -138 1479.4 -138 1481 -138 1484.2 L -138 1493.8 C -138 1497 -138 1498.6 -138.62 1500.52 C -139.24 1502.12 -140.79 1503.72 -142.34 1504.36 C -144.2 1505 -145.75 1505 -148.85 1505 L -158.15 1505 C -161.25 1505 -162.8 1505 -164.66 1504.36 C -166.21 1503.72 -167.76 1502.12 -168.38 1500.52 C -169 1498.6 -169 1497 -169 1493.8 L -169 1484.2 C -169 1481 -169 1479.4 -168.38 1477.48 C -167.76 1475.88 -166.21 1474.28 -164.66 1473.64 C -162.8 1473 -161.25 1473 -158.15 1473 M -158.15 1473" fill="#dce7fd"/> + <path d="M -158.15 1473 L -148.85 1473 C -145.75 1473 -144.2 1473 -142.34 1473.64 C -140.79 1474.28 -139.24 1475.88 -138.62 1477.48 C -138 1479.4 -138 1481 -138 1484.2 L -138 1493.8 C -138 1497 -138 1498.6 -138.62 1500.52 C -139.24 1502.12 -140.79 1503.72 -142.34 1504.36 C -144.2 1505 -145.75 1505 -148.85 1505 L -158.15 1505 C -161.25 1505 -162.8 1505 -164.66 1504.36 C -166.21 1503.72 -167.76 1502.12 -168.38 1500.52 C -169 1498.6 -169 1497 -169 1493.8 L -169 1484.2 C -169 1481 -169 1479.4 -168.38 1477.48 C -167.76 1475.88 -166.21 1474.28 -164.66 1473.64 C -162.8 1473 -161.25 1473 -158.15 1473 M -158.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-157.392 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">6</tspan> + </text> + </g> + <g id="Graphic_2313"> + <path d="M -189.15 1473 L -179.85 1473 C -176.75 1473 -175.2 1473 -173.34 1473.64 C -171.79 1474.28 -170.24 1475.88 -169.62 1477.48 C -169 1479.4 -169 1481 -169 1484.2 L -169 1493.8 C -169 1497 -169 1498.6 -169.62 1500.52 C -170.24 1502.12 -171.79 1503.72 -173.34 1504.36 C -175.2 1505 -176.75 1505 -179.85 1505 L -189.15 1505 C -192.25 1505 -193.8 1505 -195.66 1504.36 C -197.21 1503.72 -198.76 1502.12 -199.38 1500.52 C -200 1498.6 -200 1497 -200 1493.8 L -200 1484.2 C -200 1481 -200 1479.4 -199.38 1477.48 C -198.76 1475.88 -197.21 1474.28 -195.66 1473.64 C -193.8 1473 -192.25 1473 -189.15 1473 M -189.15 1473" fill="#dce7fd"/> + <path d="M -189.15 1473 L -179.85 1473 C -176.75 1473 -175.2 1473 -173.34 1473.64 C -171.79 1474.28 -170.24 1475.88 -169.62 1477.48 C -169 1479.4 -169 1481 -169 1484.2 L -169 1493.8 C -169 1497 -169 1498.6 -169.62 1500.52 C -170.24 1502.12 -171.79 1503.72 -173.34 1504.36 C -175.2 1505 -176.75 1505 -179.85 1505 L -189.15 1505 C -192.25 1505 -193.8 1505 -195.66 1504.36 C -197.21 1503.72 -198.76 1502.12 -199.38 1500.52 C -200 1498.6 -200 1497 -200 1493.8 L -200 1484.2 C -200 1481 -200 1479.4 -199.38 1477.48 C -198.76 1475.88 -197.21 1474.28 -195.66 1473.64 C -193.8 1473 -192.25 1473 -189.15 1473 M -189.15 1473" stroke="gray" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(-188.392 1480.804)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" font-weight="400" fill="black" x="0" y="13">5</tspan> + </text> + </g> + <g id="Graphic_2311"> + <text transform="translate(-372 1481.552)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7105427e-21" y="15">Resample 5</tspan> + </text> + </g> + <g id="Graphic_2345"> + <text transform="translate(-140 1241.776)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="7.196" y="15">Model Fit Using</tspan> + </text> + </g> + <g id="Graphic_2346"> + <text transform="translate(103 1209.328)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="17.38" y="15">Estimate </tspan> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="2.572" y="33.448">Performance </tspan> + <tspan font-family="Helvetica Neue" font-size="16" font-weight="400" fill="black" x="27.908" y="51.895996">Using</tspan> + </text> + </g> + <g id="Line_2347"> + <line x1="-198" y1="1270.5" x2="47" y2="1271.5" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3"/> + </g> + <g id="Line_2348"> + <line x1="98" y1="1270.5" x2="205" y2="1271" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3"/> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/small_init.svg b/SD/5.1_model/images/small_init.svg new file mode 100644 index 0000000..74e82be --- /dev/null +++ b/SD/5.1_model/images/small_init.svg @@ -0,0 +1,75 @@ +<?xml version='1.0' encoding='UTF-8' ?> +<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' class='svglite' width='439.20pt' height='306.00pt' viewBox='0 0 439.20 306.00'> +<defs> + <style type='text/css'><![CDATA[ + .svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle { + fill: none; + stroke: #000000; + stroke-linecap: round; + stroke-linejoin: round; + stroke-miterlimit: 10.00; + } + .svglite text { + white-space: pre; + } + ]]></style> +</defs> +<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/> +<defs> + <clipPath id='cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA='> + <rect x='0.00' y='0.00' width='439.20' height='306.00' /> + </clipPath> +</defs> +<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'> +<rect x='0.00' y='0.00' width='439.20' height='306.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' /> +</g> +<defs> + <clipPath id='cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3'> + <rect x='33.27' y='5.48' width='400.45' height='268.79' /> + </clipPath> +</defs> +<g clip-path='url(#cpMzMuMjd8NDMzLjcyfDUuNDh8Mjc0LjI3)'> +<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' /> +<polyline points='33.27,238.58 433.72,238.58 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,180.73 433.72,180.73 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,122.88 433.72,122.88 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,65.03 433.72,65.03 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,7.18 433.72,7.18 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='51.47,274.27 51.47,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='190.15,274.27 190.15,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='328.84,274.27 328.84,5.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,267.50 433.72,267.50 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,209.65 433.72,209.65 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,151.80 433.72,151.80 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,93.95 433.72,93.95 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='33.27,36.10 433.72,36.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='120.81,274.27 120.81,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='259.50,274.27 259.50,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='398.18,274.27 398.18,5.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' /> +<polyline points='51.47,17.70 55.15,17.73 58.82,17.77 62.50,17.81 66.18,17.86 69.86,17.92 73.53,17.98 77.21,18.05 80.89,18.13 84.57,18.22 88.24,18.32 91.92,18.44 95.60,18.57 99.27,18.72 102.95,18.88 106.63,19.07 110.31,19.28 113.98,19.52 117.66,19.79 121.34,20.10 125.01,20.44 128.69,20.83 132.37,21.26 136.05,21.76 139.72,22.31 143.40,22.93 147.08,23.64 150.76,24.43 154.43,25.33 158.11,26.33 161.79,27.47 165.46,28.74 169.14,30.17 172.82,31.77 176.50,33.56 180.17,35.58 183.85,37.84 187.53,40.36 191.21,43.18 194.88,46.32 198.56,49.81 202.24,53.71 205.91,58.01 209.59,62.78 213.27,68.07 216.95,73.84 220.62,80.20 224.30,87.14 227.98,94.67 231.66,102.77 235.33,111.48 239.01,120.72 242.69,130.38 246.36,140.47 250.04,150.90 253.72,161.49 257.40,172.20 261.07,182.77 264.75,193.28 268.43,203.02 272.11,212.26 275.78,220.71 279.46,228.10 283.14,234.47 286.81,240.00 290.49,244.46 294.17,248.31 297.85,251.48 301.52,253.47 305.20,255.43 308.88,257.08 312.55,257.94 316.23,258.86 319.91,259.68 323.59,260.31 327.26,260.03 330.94,260.84 334.62,260.93 338.30,262.05 341.97,260.92 345.65,261.35 349.33,261.26 353.00,261.43 356.68,260.81 360.36,260.29 364.04,259.27 367.71,257.85 371.39,257.15 375.07,254.18 378.75,252.51 382.42,250.51 386.10,247.01 389.78,239.75 393.45,235.27 397.13,229.47 400.81,218.83 404.49,210.20 408.16,197.55 411.84,175.34 415.52,130.52 ' style='stroke-width: 3.20; stroke: #0B84A5; stroke-opacity: 0.50; stroke-linecap: butt;' /> +<circle cx='51.47' cy='17.70' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='233.49' cy='107.04' r='4.62' style='stroke-width: 0.71;' /> +<circle cx='415.52' cy='130.52' r='4.62' style='stroke-width: 0.71;' /> +<rect x='33.27' y='5.48' width='400.45' height='268.79' style='stroke-width: 1.07; stroke: #333333;' /> +</g> +<g clip-path='url(#cpMC4wMHw0MzkuMjB8MC4wMHwzMDYuMDA=)'> +<text x='28.34' y='270.66' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>10</text> +<text x='28.34' y='212.81' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>20</text> +<text x='28.34' y='154.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>30</text> +<text x='28.34' y='97.11' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>40</text> +<text x='28.34' y='39.26' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='9.79px' lengthAdjust='spacingAndGlyphs'>50</text> +<polyline points='30.53,267.50 33.27,267.50 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,209.65 33.27,209.65 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,151.80 33.27,151.80 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,93.95 33.27,93.95 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='30.53,36.10 33.27,36.10 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='120.81,277.01 120.81,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='259.50,277.01 259.50,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<polyline points='398.18,277.01 398.18,274.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' /> +<text x='120.81' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-04</text> +<text x='259.50' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='22.51px' lengthAdjust='spacingAndGlyphs'>1e-02</text> +<text x='398.18' y='285.50' text-anchor='middle' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Arial";' textLength='24.72px' lengthAdjust='spacingAndGlyphs'>1e+00</text> +<text x='233.49' y='298.09' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='69.11px' lengthAdjust='spacingAndGlyphs'>Learning Rate</text> +<text transform='translate(13.37,139.87) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Arial";' textLength='24.45px' lengthAdjust='spacingAndGlyphs'>Error</text> +</g> +</svg> diff --git a/SD/5.1_model/images/snake.png b/SD/5.1_model/images/snake.png new file mode 100644 index 0000000..6dc4b4c Binary files /dev/null and b/SD/5.1_model/images/snake.png differ diff --git a/SD/5.1_model/images/stack_01.png b/SD/5.1_model/images/stack_01.png new file mode 100644 index 0000000..54bbdbc Binary files /dev/null and b/SD/5.1_model/images/stack_01.png differ diff --git a/SD/5.1_model/images/stack_02.png b/SD/5.1_model/images/stack_02.png new file mode 100644 index 0000000..7544610 Binary files /dev/null and b/SD/5.1_model/images/stack_02.png differ diff --git a/SD/5.1_model/images/stack_03.png b/SD/5.1_model/images/stack_03.png new file mode 100644 index 0000000..13f7117 Binary files /dev/null and b/SD/5.1_model/images/stack_03.png differ diff --git a/SD/5.1_model/images/stack_04.png b/SD/5.1_model/images/stack_04.png new file mode 100644 index 0000000..8c02230 Binary files /dev/null and b/SD/5.1_model/images/stack_04.png differ diff --git a/SD/5.1_model/images/stack_05.png b/SD/5.1_model/images/stack_05.png new file mode 100644 index 0000000..afb47db Binary files /dev/null and b/SD/5.1_model/images/stack_05.png differ diff --git a/SD/5.1_model/images/steve.gif b/SD/5.1_model/images/steve.gif new file mode 100644 index 0000000..b4b7f77 Binary files /dev/null and b/SD/5.1_model/images/steve.gif differ diff --git a/SD/5.1_model/images/taxi.png b/SD/5.1_model/images/taxi.png new file mode 100644 index 0000000..e92c00d Binary files /dev/null and b/SD/5.1_model/images/taxi.png differ diff --git a/SD/5.1_model/images/taxi_spinning.svg b/SD/5.1_model/images/taxi_spinning.svg new file mode 100644 index 0000000..f178312 --- /dev/null +++ b/SD/5.1_model/images/taxi_spinning.svg @@ -0,0 +1,34 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="-41 -41 492 492" xml:space="preserve" width="800" height="800"> + <g stroke-width="0"/> + <g stroke-linecap="round" stroke-linejoin="round" stroke="#CCC" stroke-width="3.28"/> + <path style="fill:#ffda44" d="M75 232.5c13.326 0 25.294 5.797 33.534 15.002H170V117.5H70l-30 70H0v30h30v30H0v.002h41.466C49.706 238.297 61.674 232.5 75 232.5zm14.782-85H155v40H72.639l17.143-40z"/> + <path style="fill:#ff9811" d="M170 247.5h30v.002h-30zm150-60-50-70H170v100h30v30h30v-30h30v30h-30v.002h71.466c8.24-9.205 20.208-15.002 33.534-15.002s25.294 5.797 33.534 15.002H410v-.002h-20l-10-30h30v-10l-90-20zm-135 0v-40h69.561l28.571 40H185z"/> + <path style="fill:#acabb1" d="M0 247.502V277.5h30c0-11.527 4.339-22.037 11.466-29.998H0zm170 0h-61.466C115.661 255.463 120 265.973 120 277.5h80v-29.998h-30zm60 0V277.5h60c0-11.527 4.339-22.037 11.466-29.998H230zM380 277.5h30v-29.998h-41.466C375.661 255.463 380 265.973 380 277.5z"/> + <path style="fill:#616064" d="M52.5 277.5c0-12.427 10.073-22.5 22.5-22.5v-22.5c-13.326 0-25.294 5.797-33.534 15.002C34.339 255.463 30 265.973 30 277.5c0 24.853 20.147 45 45 45V300c-12.427 0-22.5-10.073-22.5-22.5z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#565659" d="M75 232.5V255c12.427 0 22.5 10.073 22.5 22.5S87.427 300 75 300v22.5c24.852 0 45-20.147 45-45 0-11.527-4.339-22.037-11.466-29.998C100.294 238.297 88.326 232.5 75 232.5z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#cdcdd0" d="M52.5 277.5c0 12.427 10.073 22.5 22.5 22.5v-45c-12.427 0-22.5 10.073-22.5 22.5z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#acabb1" d="M75 300c12.427 0 22.5-10.073 22.5-22.5S87.427 255 75 255v45z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 75,277.5" to="360 75,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#616064" d="M312.5 277.5c0-12.427 10.073-22.5 22.5-22.5v-22.5c-13.326 0-25.294 5.797-33.534 15.002C294.339 255.463 290 265.973 290 277.5c0 24.853 20.147 45 45 45V300c-12.427 0-22.5-10.073-22.5-22.5z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#565659" d="M335 232.5V255c12.427 0 22.5 10.073 22.5 22.5S347.427 300 335 300v22.5c24.852 0 45-20.147 45-45 0-11.527-4.339-22.037-11.466-29.998-8.24-9.205-20.208-15.002-33.534-15.002z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#cdcdd0" d="M312.5 277.5c0 12.427 10.073 22.5 22.5 22.5v-45c-12.427 0-22.5 10.073-22.5 22.5z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#acabb1" d="M335 300c12.427 0 22.5-10.073 22.5-22.5S347.427 255 335 255v45z"> + <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 335,277.5" to="360 335,277.5" dur="2s" repeatCount="indefinite"/> + </path> + <path style="fill:#fff" d="M155 147.5H89.782l-17.143 40H155zm30 0v40h98.133l-28.572-40z"/> + <path style="fill:#ff5023" d="M0 217.5h30v30H0zm390 30h20v-30h-30z"/> + <path style="fill:#565659" d="M210 117.5v-30h-80v30h40zm-40 100h30v30h-30zm60 30h-30v30h30v-29.998zm0-30h30v30h-30z"/> +</svg> diff --git a/SD/5.1_model/images/tm-org.png b/SD/5.1_model/images/tm-org.png new file mode 100644 index 0000000..68ac928 Binary files /dev/null and b/SD/5.1_model/images/tm-org.png differ diff --git a/SD/5.1_model/images/tuning-overfitting-test-1.svg b/SD/5.1_model/images/tuning-overfitting-test-1.svg new file mode 100644 index 0000000..007d97d --- /dev/null +++ b/SD/5.1_model/images/tuning-overfitting-test-1.svg @@ -0,0 +1,1417 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="648pt" height="270pt" viewBox="0 0 648 270" version="1.1"> +<defs> +<g> +<symbol overflow="visible" id="glyph0-0"> +<path style="stroke:none;" d="M 0.28125 0 L 0.28125 -6.3125 L 5.296875 -6.3125 L 5.296875 0 Z M 4.5 -0.796875 L 4.5 -5.515625 L 1.078125 -5.515625 L 1.078125 -0.796875 Z M 4.5 -0.796875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-1"> +<path style="stroke:none;" d="M 1.34375 -4.59375 L 1.34375 -1.546875 C 1.34375 -1.304688 1.378906 -1.113281 1.453125 -0.96875 C 1.585938 -0.695312 1.84375 -0.5625 2.21875 -0.5625 C 2.757812 -0.5625 3.125 -0.800781 3.3125 -1.28125 C 3.425781 -1.539062 3.484375 -1.894531 3.484375 -2.34375 L 3.484375 -4.59375 L 4.25 -4.59375 L 4.25 0 L 3.515625 0 L 3.53125 -0.671875 C 3.425781 -0.503906 3.300781 -0.359375 3.15625 -0.234375 C 2.863281 0.00390625 2.503906 0.125 2.078125 0.125 C 1.421875 0.125 0.976562 -0.09375 0.75 -0.53125 C 0.613281 -0.769531 0.546875 -1.082031 0.546875 -1.46875 L 0.546875 -4.59375 Z M 2.40625 -4.71875 Z M 2.40625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-2"> +<path style="stroke:none;" d="M 0.5625 -4.59375 L 1.296875 -4.59375 L 1.296875 -3.953125 C 1.515625 -4.210938 1.742188 -4.398438 1.984375 -4.515625 C 2.234375 -4.640625 2.507812 -4.703125 2.8125 -4.703125 C 3.457031 -4.703125 3.894531 -4.472656 4.125 -4.015625 C 4.25 -3.765625 4.3125 -3.410156 4.3125 -2.953125 L 4.3125 0 L 3.53125 0 L 3.53125 -2.90625 C 3.53125 -3.175781 3.488281 -3.398438 3.40625 -3.578125 C 3.269531 -3.859375 3.019531 -4 2.65625 -4 C 2.476562 -4 2.328125 -3.984375 2.203125 -3.953125 C 1.992188 -3.890625 1.8125 -3.765625 1.65625 -3.578125 C 1.519531 -3.421875 1.429688 -3.257812 1.390625 -3.09375 C 1.359375 -2.9375 1.34375 -2.707031 1.34375 -2.40625 L 1.34375 0 L 0.5625 0 Z M 2.390625 -4.71875 Z M 2.390625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-3"> +<path style="stroke:none;" d="M 1.0625 -2.25 C 1.0625 -1.75 1.164062 -1.332031 1.375 -1 C 1.582031 -0.675781 1.914062 -0.515625 2.375 -0.515625 C 2.726562 -0.515625 3.019531 -0.664062 3.25 -0.96875 C 3.488281 -1.28125 3.609375 -1.722656 3.609375 -2.296875 C 3.609375 -2.878906 3.488281 -3.304688 3.25 -3.578125 C 3.007812 -3.859375 2.710938 -4 2.359375 -4 C 1.972656 -4 1.660156 -3.847656 1.421875 -3.546875 C 1.179688 -3.253906 1.0625 -2.820312 1.0625 -2.25 Z M 2.21875 -4.6875 C 2.570312 -4.6875 2.867188 -4.609375 3.109375 -4.453125 C 3.242188 -4.367188 3.398438 -4.21875 3.578125 -4 L 3.578125 -6.328125 L 4.3125 -6.328125 L 4.3125 0 L 3.625 0 L 3.625 -0.640625 C 3.4375 -0.359375 3.21875 -0.15625 2.96875 -0.03125 C 2.726562 0.09375 2.453125 0.15625 2.140625 0.15625 C 1.617188 0.15625 1.171875 -0.0546875 0.796875 -0.484375 C 0.421875 -0.910156 0.234375 -1.484375 0.234375 -2.203125 C 0.234375 -2.867188 0.40625 -3.445312 0.75 -3.9375 C 1.09375 -4.4375 1.582031 -4.6875 2.21875 -4.6875 Z M 2.21875 -4.6875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-4"> +<path style="stroke:none;" d="M 2.484375 -4.703125 C 2.804688 -4.703125 3.117188 -4.625 3.421875 -4.46875 C 3.734375 -4.320312 3.96875 -4.125 4.125 -3.875 C 4.28125 -3.644531 4.382812 -3.375 4.4375 -3.0625 C 4.488281 -2.851562 4.515625 -2.515625 4.515625 -2.046875 L 1.140625 -2.046875 C 1.148438 -1.585938 1.257812 -1.210938 1.46875 -0.921875 C 1.675781 -0.640625 1.992188 -0.5 2.421875 -0.5 C 2.828125 -0.5 3.148438 -0.632812 3.390625 -0.90625 C 3.523438 -1.0625 3.625 -1.238281 3.6875 -1.4375 L 4.453125 -1.4375 C 4.429688 -1.269531 4.363281 -1.082031 4.25 -0.875 C 4.132812 -0.664062 4.003906 -0.5 3.859375 -0.375 C 3.628906 -0.144531 3.34375 0.0078125 3 0.09375 C 2.8125 0.132812 2.597656 0.15625 2.359375 0.15625 C 1.785156 0.15625 1.300781 -0.0507812 0.90625 -0.46875 C 0.507812 -0.882812 0.3125 -1.46875 0.3125 -2.21875 C 0.3125 -2.945312 0.507812 -3.539062 0.90625 -4 C 1.3125 -4.46875 1.835938 -4.703125 2.484375 -4.703125 Z M 3.71875 -2.671875 C 3.6875 -3.003906 3.613281 -3.269531 3.5 -3.46875 C 3.28125 -3.84375 2.925781 -4.03125 2.4375 -4.03125 C 2.082031 -4.03125 1.785156 -3.898438 1.546875 -3.640625 C 1.304688 -3.390625 1.175781 -3.066406 1.15625 -2.671875 Z M 2.40625 -4.71875 Z M 2.40625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-5"> +<path style="stroke:none;" d="M 0.59375 -4.59375 L 1.328125 -4.59375 L 1.328125 -3.8125 C 1.378906 -3.957031 1.523438 -4.140625 1.765625 -4.359375 C 2.003906 -4.585938 2.273438 -4.703125 2.578125 -4.703125 C 2.585938 -4.703125 2.609375 -4.695312 2.640625 -4.6875 C 2.679688 -4.6875 2.742188 -4.6875 2.828125 -4.6875 L 2.828125 -3.859375 C 2.773438 -3.867188 2.726562 -3.875 2.6875 -3.875 C 2.65625 -3.882812 2.617188 -3.890625 2.578125 -3.890625 C 2.179688 -3.890625 1.878906 -3.765625 1.671875 -3.515625 C 1.460938 -3.265625 1.359375 -2.972656 1.359375 -2.640625 L 1.359375 0 L 0.59375 0 Z M 0.59375 -4.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-6"> +<path style="stroke:none;" d="M 0.765625 -5.296875 C 0.773438 -5.617188 0.828125 -5.851562 0.921875 -6 C 1.109375 -6.269531 1.457031 -6.40625 1.96875 -6.40625 C 2.019531 -6.40625 2.070312 -6.398438 2.125 -6.390625 C 2.175781 -6.390625 2.234375 -6.390625 2.296875 -6.390625 L 2.296875 -5.671875 C 2.210938 -5.679688 2.15625 -5.6875 2.125 -5.6875 C 2.09375 -5.6875 2.054688 -5.6875 2.015625 -5.6875 C 1.785156 -5.6875 1.644531 -5.625 1.59375 -5.5 C 1.550781 -5.382812 1.53125 -5.078125 1.53125 -4.578125 L 2.296875 -4.578125 L 2.296875 -3.96875 L 1.53125 -3.96875 L 1.53125 0 L 0.765625 0 L 0.765625 -3.96875 L 0.125 -3.96875 L 0.125 -4.578125 L 0.765625 -4.578125 Z M 0.765625 -5.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-7"> +<path style="stroke:none;" d="M 0.5625 -4.578125 L 1.359375 -4.578125 L 1.359375 0 L 0.5625 0 Z M 0.5625 -6.3125 L 1.359375 -6.3125 L 1.359375 -5.4375 L 0.5625 -5.4375 Z M 0.5625 -6.3125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-8"> +<path style="stroke:none;" d="M 0.71875 -5.890625 L 1.5 -5.890625 L 1.5 -4.59375 L 2.234375 -4.59375 L 2.234375 -3.96875 L 1.5 -3.96875 L 1.5 -0.96875 C 1.5 -0.800781 1.554688 -0.691406 1.671875 -0.640625 C 1.722656 -0.609375 1.820312 -0.59375 1.96875 -0.59375 C 2 -0.59375 2.035156 -0.59375 2.078125 -0.59375 C 2.128906 -0.59375 2.179688 -0.597656 2.234375 -0.609375 L 2.234375 0 C 2.148438 0.0195312 2.054688 0.0351562 1.953125 0.046875 C 1.859375 0.0664062 1.757812 0.078125 1.65625 0.078125 C 1.289062 0.078125 1.039062 -0.015625 0.90625 -0.203125 C 0.78125 -0.390625 0.71875 -0.628906 0.71875 -0.921875 L 0.71875 -3.96875 L 0.09375 -3.96875 L 0.09375 -4.59375 L 0.71875 -4.59375 Z M 0.71875 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-9"> +<path style="stroke:none;" d="M 1.15625 -1.21875 C 1.15625 -1 1.238281 -0.820312 1.40625 -0.6875 C 1.570312 -0.5625 1.765625 -0.5 1.984375 -0.5 C 2.253906 -0.5 2.519531 -0.5625 2.78125 -0.6875 C 3.207031 -0.894531 3.421875 -1.238281 3.421875 -1.71875 L 3.421875 -2.34375 C 3.328125 -2.28125 3.203125 -2.226562 3.046875 -2.1875 C 2.898438 -2.144531 2.753906 -2.117188 2.609375 -2.109375 L 2.140625 -2.046875 C 1.867188 -2.003906 1.660156 -1.945312 1.515625 -1.875 C 1.273438 -1.738281 1.15625 -1.519531 1.15625 -1.21875 Z M 3.03125 -2.78125 C 3.207031 -2.8125 3.328125 -2.890625 3.390625 -3.015625 C 3.421875 -3.078125 3.4375 -3.175781 3.4375 -3.3125 C 3.4375 -3.570312 3.34375 -3.757812 3.15625 -3.875 C 2.96875 -4 2.703125 -4.0625 2.359375 -4.0625 C 1.953125 -4.0625 1.664062 -3.953125 1.5 -3.734375 C 1.40625 -3.609375 1.34375 -3.429688 1.3125 -3.203125 L 0.59375 -3.203125 C 0.601562 -3.765625 0.785156 -4.15625 1.140625 -4.375 C 1.492188 -4.601562 1.90625 -4.71875 2.375 -4.71875 C 2.914062 -4.71875 3.351562 -4.613281 3.6875 -4.40625 C 4.019531 -4.195312 4.1875 -3.875 4.1875 -3.4375 L 4.1875 -0.796875 C 4.1875 -0.710938 4.203125 -0.644531 4.234375 -0.59375 C 4.273438 -0.550781 4.347656 -0.53125 4.453125 -0.53125 C 4.484375 -0.53125 4.519531 -0.53125 4.5625 -0.53125 C 4.601562 -0.53125 4.648438 -0.535156 4.703125 -0.546875 L 4.703125 0.015625 C 4.578125 0.0546875 4.484375 0.078125 4.421875 0.078125 C 4.359375 0.0859375 4.273438 0.09375 4.171875 0.09375 C 3.898438 0.09375 3.707031 0 3.59375 -0.1875 C 3.53125 -0.28125 3.484375 -0.421875 3.453125 -0.609375 C 3.296875 -0.398438 3.070312 -0.21875 2.78125 -0.0625 C 2.488281 0.0820312 2.160156 0.15625 1.796875 0.15625 C 1.367188 0.15625 1.019531 0.0234375 0.75 -0.234375 C 0.488281 -0.492188 0.359375 -0.816406 0.359375 -1.203125 C 0.359375 -1.628906 0.488281 -1.957031 0.75 -2.1875 C 1.019531 -2.425781 1.367188 -2.578125 1.796875 -2.640625 Z M 2.390625 -4.71875 Z M 2.390625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-10"> +<path style="stroke:none;" d="M 0.5 -6.328125 L 1.265625 -6.328125 L 1.265625 -4.046875 C 1.429688 -4.265625 1.628906 -4.429688 1.859375 -4.546875 C 2.097656 -4.660156 2.351562 -4.71875 2.625 -4.71875 C 3.195312 -4.71875 3.660156 -4.519531 4.015625 -4.125 C 4.378906 -3.738281 4.5625 -3.160156 4.5625 -2.390625 C 4.5625 -1.660156 4.382812 -1.054688 4.03125 -0.578125 C 3.675781 -0.0976562 3.1875 0.140625 2.5625 0.140625 C 2.21875 0.140625 1.921875 0.0546875 1.671875 -0.109375 C 1.535156 -0.203125 1.382812 -0.363281 1.21875 -0.59375 L 1.21875 0 L 0.5 0 Z M 2.515625 -0.53125 C 2.929688 -0.53125 3.242188 -0.695312 3.453125 -1.03125 C 3.660156 -1.363281 3.765625 -1.800781 3.765625 -2.34375 C 3.765625 -2.832031 3.660156 -3.234375 3.453125 -3.546875 C 3.242188 -3.867188 2.9375 -4.03125 2.53125 -4.03125 C 2.1875 -4.03125 1.878906 -3.898438 1.609375 -3.640625 C 1.347656 -3.378906 1.21875 -2.945312 1.21875 -2.34375 C 1.21875 -1.914062 1.269531 -1.566406 1.375 -1.296875 C 1.582031 -0.785156 1.960938 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-11"> +<path style="stroke:none;" d="M 2.390625 -0.5 C 2.898438 -0.5 3.25 -0.691406 3.4375 -1.078125 C 3.632812 -1.460938 3.734375 -1.894531 3.734375 -2.375 C 3.734375 -2.800781 3.664062 -3.148438 3.53125 -3.421875 C 3.3125 -3.847656 2.9375 -4.0625 2.40625 -4.0625 C 1.925781 -4.0625 1.578125 -3.878906 1.359375 -3.515625 C 1.148438 -3.160156 1.046875 -2.726562 1.046875 -2.21875 C 1.046875 -1.726562 1.148438 -1.316406 1.359375 -0.984375 C 1.578125 -0.660156 1.921875 -0.5 2.390625 -0.5 Z M 2.421875 -4.734375 C 3.015625 -4.734375 3.515625 -4.535156 3.921875 -4.140625 C 4.335938 -3.742188 4.546875 -3.160156 4.546875 -2.390625 C 4.546875 -1.648438 4.363281 -1.035156 4 -0.546875 C 3.632812 -0.0664062 3.070312 0.171875 2.3125 0.171875 C 1.6875 0.171875 1.1875 -0.0390625 0.8125 -0.46875 C 0.4375 -0.894531 0.25 -1.472656 0.25 -2.203125 C 0.25 -2.972656 0.445312 -3.585938 0.84375 -4.046875 C 1.238281 -4.503906 1.765625 -4.734375 2.421875 -4.734375 Z M 2.390625 -4.71875 Z M 2.390625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-12"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph0-13"> +<path style="stroke:none;" d="M 2.1875 -4.6875 C 2.550781 -4.6875 2.867188 -4.597656 3.140625 -4.421875 C 3.285156 -4.316406 3.429688 -4.171875 3.578125 -3.984375 L 3.578125 -4.5625 L 4.296875 -4.5625 L 4.296875 -0.375 C 4.296875 0.207031 4.207031 0.671875 4.03125 1.015625 C 3.71875 1.640625 3.113281 1.953125 2.21875 1.953125 C 1.726562 1.953125 1.3125 1.835938 0.96875 1.609375 C 0.632812 1.390625 0.445312 1.046875 0.40625 0.578125 L 1.1875 0.578125 C 1.226562 0.773438 1.300781 0.929688 1.40625 1.046875 C 1.582031 1.222656 1.859375 1.3125 2.234375 1.3125 C 2.828125 1.3125 3.21875 1.097656 3.40625 0.671875 C 3.507812 0.429688 3.554688 -0.00390625 3.546875 -0.640625 C 3.390625 -0.398438 3.203125 -0.222656 2.984375 -0.109375 C 2.773438 0.00390625 2.488281 0.0625 2.125 0.0625 C 1.632812 0.0625 1.203125 -0.113281 0.828125 -0.46875 C 0.453125 -0.820312 0.265625 -1.410156 0.265625 -2.234375 C 0.265625 -3.003906 0.453125 -3.601562 0.828125 -4.03125 C 1.203125 -4.46875 1.65625 -4.6875 2.1875 -4.6875 Z M 3.578125 -2.3125 C 3.578125 -2.882812 3.457031 -3.304688 3.21875 -3.578125 C 2.988281 -3.859375 2.691406 -4 2.328125 -4 C 1.785156 -4 1.414062 -3.742188 1.21875 -3.234375 C 1.113281 -2.960938 1.0625 -2.609375 1.0625 -2.171875 C 1.0625 -1.648438 1.164062 -1.253906 1.375 -0.984375 C 1.582031 -0.710938 1.863281 -0.578125 2.21875 -0.578125 C 2.769531 -0.578125 3.160156 -0.828125 3.390625 -1.328125 C 3.515625 -1.609375 3.578125 -1.9375 3.578125 -2.3125 Z M 2.28125 -4.71875 Z M 2.28125 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-14"> +<path style="stroke:none;" d="M 0.5625 -6.328125 L 1.34375 -6.328125 L 1.34375 -3.984375 C 1.519531 -4.210938 1.679688 -4.375 1.828125 -4.46875 C 2.078125 -4.632812 2.390625 -4.71875 2.765625 -4.71875 C 3.429688 -4.71875 3.882812 -4.484375 4.125 -4.015625 C 4.25 -3.753906 4.3125 -3.398438 4.3125 -2.953125 L 4.3125 0 L 3.515625 0 L 3.515625 -2.90625 C 3.515625 -3.238281 3.472656 -3.484375 3.390625 -3.640625 C 3.253906 -3.890625 2.992188 -4.015625 2.609375 -4.015625 C 2.285156 -4.015625 1.992188 -3.90625 1.734375 -3.6875 C 1.472656 -3.46875 1.34375 -3.050781 1.34375 -2.4375 L 1.34375 0 L 0.5625 0 Z M 0.5625 -6.328125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-15"> +<path style="stroke:none;" d="M 0.9375 -4.59375 L 2.171875 -0.859375 L 3.453125 -4.59375 L 4.296875 -4.59375 L 2.5625 0 L 1.75 0 L 0.046875 -4.59375 Z M 0.9375 -4.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-16"> +<path style="stroke:none;" d="M 0.359375 -2.84375 L 2.515625 -2.84375 L 2.515625 -2.046875 L 0.359375 -2.046875 Z M 0.359375 -2.84375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-17"> +<path style="stroke:none;" d="M 2.578125 -6.171875 C 3.265625 -6.171875 3.742188 -5.992188 4.015625 -5.640625 C 4.285156 -5.285156 4.421875 -4.921875 4.421875 -4.546875 L 3.65625 -4.546875 C 3.601562 -4.785156 3.53125 -4.972656 3.4375 -5.109375 C 3.25 -5.367188 2.960938 -5.5 2.578125 -5.5 C 2.148438 -5.5 1.804688 -5.296875 1.546875 -4.890625 C 1.296875 -4.492188 1.15625 -3.925781 1.125 -3.1875 C 1.300781 -3.445312 1.523438 -3.640625 1.796875 -3.765625 C 2.046875 -3.878906 2.320312 -3.9375 2.625 -3.9375 C 3.132812 -3.9375 3.582031 -3.769531 3.96875 -3.4375 C 4.351562 -3.113281 4.546875 -2.625 4.546875 -1.96875 C 4.546875 -1.414062 4.363281 -0.921875 4 -0.484375 C 3.632812 -0.0546875 3.117188 0.15625 2.453125 0.15625 C 1.867188 0.15625 1.367188 -0.0625 0.953125 -0.5 C 0.535156 -0.9375 0.328125 -1.671875 0.328125 -2.703125 C 0.328125 -3.460938 0.421875 -4.109375 0.609375 -4.640625 C 0.960938 -5.660156 1.617188 -6.171875 2.578125 -6.171875 Z M 2.515625 -0.53125 C 2.921875 -0.53125 3.222656 -0.664062 3.421875 -0.9375 C 3.628906 -1.207031 3.734375 -1.53125 3.734375 -1.90625 C 3.734375 -2.21875 3.640625 -2.515625 3.453125 -2.796875 C 3.273438 -3.085938 2.953125 -3.234375 2.484375 -3.234375 C 2.148438 -3.234375 1.859375 -3.125 1.609375 -2.90625 C 1.359375 -2.6875 1.234375 -2.351562 1.234375 -1.90625 C 1.234375 -1.519531 1.34375 -1.191406 1.5625 -0.921875 C 1.789062 -0.660156 2.109375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-18"> +<path style="stroke:none;" d="M 2.28125 0.171875 C 1.550781 0.171875 1.019531 -0.0234375 0.6875 -0.421875 C 0.363281 -0.828125 0.203125 -1.316406 0.203125 -1.890625 L 1.015625 -1.890625 C 1.046875 -1.492188 1.117188 -1.203125 1.234375 -1.015625 C 1.441406 -0.691406 1.804688 -0.53125 2.328125 -0.53125 C 2.734375 -0.53125 3.054688 -0.640625 3.296875 -0.859375 C 3.546875 -1.078125 3.671875 -1.359375 3.671875 -1.703125 C 3.671875 -2.128906 3.539062 -2.425781 3.28125 -2.59375 C 3.03125 -2.757812 2.671875 -2.84375 2.203125 -2.84375 C 2.148438 -2.84375 2.097656 -2.84375 2.046875 -2.84375 C 1.992188 -2.84375 1.941406 -2.84375 1.890625 -2.84375 L 1.890625 -3.515625 C 1.972656 -3.515625 2.039062 -3.507812 2.09375 -3.5 C 2.144531 -3.5 2.203125 -3.5 2.265625 -3.5 C 2.554688 -3.5 2.796875 -3.546875 2.984375 -3.640625 C 3.304688 -3.796875 3.46875 -4.082031 3.46875 -4.5 C 3.46875 -4.800781 3.359375 -5.035156 3.140625 -5.203125 C 2.921875 -5.367188 2.671875 -5.453125 2.390625 -5.453125 C 1.867188 -5.453125 1.507812 -5.28125 1.3125 -4.9375 C 1.207031 -4.75 1.144531 -4.476562 1.125 -4.125 L 0.359375 -4.125 C 0.359375 -4.582031 0.453125 -4.972656 0.640625 -5.296875 C 0.953125 -5.867188 1.503906 -6.15625 2.296875 -6.15625 C 2.929688 -6.15625 3.421875 -6.015625 3.765625 -5.734375 C 4.109375 -5.460938 4.28125 -5.0625 4.28125 -4.53125 C 4.28125 -4.144531 4.175781 -3.835938 3.96875 -3.609375 C 3.84375 -3.460938 3.679688 -3.347656 3.484375 -3.265625 C 3.804688 -3.171875 4.054688 -3 4.234375 -2.75 C 4.421875 -2.5 4.515625 -2.191406 4.515625 -1.828125 C 4.515625 -1.234375 4.316406 -0.75 3.921875 -0.375 C 3.535156 -0.0078125 2.988281 0.171875 2.28125 0.171875 Z M 2.28125 0.171875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-19"> +<path style="stroke:none;" d="M 2.375 -6.15625 C 3.175781 -6.15625 3.753906 -5.828125 4.109375 -5.171875 C 4.378906 -4.660156 4.515625 -3.960938 4.515625 -3.078125 C 4.515625 -2.242188 4.390625 -1.554688 4.140625 -1.015625 C 3.785156 -0.222656 3.195312 0.171875 2.375 0.171875 C 1.632812 0.171875 1.082031 -0.148438 0.71875 -0.796875 C 0.425781 -1.328125 0.28125 -2.046875 0.28125 -2.953125 C 0.28125 -3.648438 0.367188 -4.25 0.546875 -4.75 C 0.878906 -5.6875 1.488281 -6.15625 2.375 -6.15625 Z M 2.375 -0.53125 C 2.769531 -0.53125 3.085938 -0.707031 3.328125 -1.0625 C 3.566406 -1.425781 3.6875 -2.085938 3.6875 -3.046875 C 3.6875 -3.753906 3.597656 -4.332031 3.421875 -4.78125 C 3.253906 -5.226562 2.921875 -5.453125 2.421875 -5.453125 C 1.972656 -5.453125 1.640625 -5.238281 1.421875 -4.8125 C 1.210938 -4.382812 1.109375 -3.753906 1.109375 -2.921875 C 1.109375 -2.296875 1.175781 -1.789062 1.3125 -1.40625 C 1.519531 -0.820312 1.875 -0.53125 2.375 -0.53125 Z M 2.375 -0.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-0"> +<path style="stroke:none;" d="M 0.359375 0 L 0.359375 -7.890625 L 6.625 -7.890625 L 6.625 0 Z M 5.625 -0.984375 L 5.625 -6.90625 L 1.34375 -6.90625 L 1.34375 -0.984375 Z M 5.625 -0.984375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-1"> +<path style="stroke:none;" d="M 0.9375 -7.890625 L 4.484375 -7.890625 C 5.191406 -7.890625 5.757812 -7.691406 6.1875 -7.296875 C 6.613281 -6.898438 6.828125 -6.34375 6.828125 -5.625 C 6.828125 -5.007812 6.632812 -4.472656 6.25 -4.015625 C 5.875 -3.554688 5.285156 -3.328125 4.484375 -3.328125 L 2.015625 -3.328125 L 2.015625 0 L 0.9375 0 Z M 5.75 -5.625 C 5.75 -6.207031 5.535156 -6.601562 5.109375 -6.8125 C 4.867188 -6.914062 4.546875 -6.96875 4.140625 -6.96875 L 2.015625 -6.96875 L 2.015625 -4.234375 L 4.140625 -4.234375 C 4.617188 -4.234375 5.003906 -4.332031 5.296875 -4.53125 C 5.597656 -4.738281 5.75 -5.101562 5.75 -5.625 Z M 5.75 -5.625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-2"> +<path style="stroke:none;" d="M 0.734375 -5.75 L 1.65625 -5.75 L 1.65625 -4.765625 C 1.726562 -4.953125 1.910156 -5.179688 2.203125 -5.453125 C 2.492188 -5.734375 2.832031 -5.875 3.21875 -5.875 C 3.238281 -5.875 3.269531 -5.875 3.3125 -5.875 C 3.351562 -5.875 3.425781 -5.867188 3.53125 -5.859375 L 3.53125 -4.828125 C 3.476562 -4.835938 3.425781 -4.84375 3.375 -4.84375 C 3.320312 -4.851562 3.269531 -4.859375 3.21875 -4.859375 C 2.726562 -4.859375 2.351562 -4.703125 2.09375 -4.390625 C 1.832031 -4.078125 1.703125 -3.71875 1.703125 -3.3125 L 1.703125 0 L 0.734375 0 Z M 0.734375 -5.75 "/> +</symbol> +<symbol overflow="visible" id="glyph1-3"> +<path style="stroke:none;" d="M 3.109375 -5.875 C 3.515625 -5.875 3.90625 -5.78125 4.28125 -5.59375 C 4.664062 -5.40625 4.960938 -5.15625 5.171875 -4.84375 C 5.359375 -4.5625 5.484375 -4.222656 5.546875 -3.828125 C 5.609375 -3.566406 5.640625 -3.144531 5.640625 -2.5625 L 1.421875 -2.5625 C 1.441406 -1.976562 1.578125 -1.507812 1.828125 -1.15625 C 2.085938 -0.8125 2.488281 -0.640625 3.03125 -0.640625 C 3.539062 -0.640625 3.945312 -0.804688 4.25 -1.140625 C 4.414062 -1.328125 4.535156 -1.550781 4.609375 -1.8125 L 5.5625 -1.8125 C 5.53125 -1.59375 5.441406 -1.351562 5.296875 -1.09375 C 5.160156 -0.832031 5.003906 -0.625 4.828125 -0.46875 C 4.535156 -0.175781 4.175781 0.0195312 3.75 0.125 C 3.507812 0.175781 3.242188 0.203125 2.953125 0.203125 C 2.234375 0.203125 1.625 -0.0546875 1.125 -0.578125 C 0.632812 -1.097656 0.390625 -1.828125 0.390625 -2.765625 C 0.390625 -3.691406 0.640625 -4.441406 1.140625 -5.015625 C 1.640625 -5.585938 2.296875 -5.875 3.109375 -5.875 Z M 4.640625 -3.328125 C 4.609375 -3.753906 4.519531 -4.09375 4.375 -4.34375 C 4.101562 -4.800781 3.660156 -5.03125 3.046875 -5.03125 C 2.597656 -5.03125 2.222656 -4.867188 1.921875 -4.546875 C 1.628906 -4.234375 1.472656 -3.828125 1.453125 -3.328125 Z M 3.015625 -5.890625 Z M 3.015625 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-4"> +<path style="stroke:none;" d="M 1.328125 -2.8125 C 1.328125 -2.195312 1.457031 -1.679688 1.71875 -1.265625 C 1.976562 -0.847656 2.394531 -0.640625 2.96875 -0.640625 C 3.414062 -0.640625 3.78125 -0.832031 4.0625 -1.21875 C 4.351562 -1.601562 4.5 -2.15625 4.5 -2.875 C 4.5 -3.601562 4.347656 -4.140625 4.046875 -4.484375 C 3.753906 -4.835938 3.390625 -5.015625 2.953125 -5.015625 C 2.472656 -5.015625 2.082031 -4.828125 1.78125 -4.453125 C 1.476562 -4.078125 1.328125 -3.53125 1.328125 -2.8125 Z M 2.78125 -5.859375 C 3.21875 -5.859375 3.585938 -5.765625 3.890625 -5.578125 C 4.054688 -5.472656 4.25 -5.285156 4.46875 -5.015625 L 4.46875 -7.921875 L 5.390625 -7.921875 L 5.390625 0 L 4.53125 0 L 4.53125 -0.796875 C 4.300781 -0.441406 4.03125 -0.1875 3.71875 -0.03125 C 3.414062 0.125 3.066406 0.203125 2.671875 0.203125 C 2.023438 0.203125 1.46875 -0.0625 1 -0.59375 C 0.53125 -1.132812 0.296875 -1.851562 0.296875 -2.75 C 0.296875 -3.59375 0.507812 -4.320312 0.9375 -4.9375 C 1.363281 -5.550781 1.976562 -5.859375 2.78125 -5.859375 Z M 2.78125 -5.859375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-5"> +<path style="stroke:none;" d="M 0.703125 -5.71875 L 1.6875 -5.71875 L 1.6875 0 L 0.703125 0 Z M 0.703125 -7.890625 L 1.6875 -7.890625 L 1.6875 -6.796875 L 0.703125 -6.796875 Z M 0.703125 -7.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-6"> +<path style="stroke:none;" d="M 2.921875 -5.921875 C 3.578125 -5.921875 4.109375 -5.757812 4.515625 -5.4375 C 4.921875 -5.125 5.164062 -4.582031 5.25 -3.8125 L 4.296875 -3.8125 C 4.242188 -4.164062 4.113281 -4.457031 3.90625 -4.6875 C 3.707031 -4.925781 3.378906 -5.046875 2.921875 -5.046875 C 2.304688 -5.046875 1.867188 -4.75 1.609375 -4.15625 C 1.429688 -3.757812 1.34375 -3.273438 1.34375 -2.703125 C 1.34375 -2.128906 1.460938 -1.644531 1.703125 -1.25 C 1.953125 -0.851562 2.335938 -0.65625 2.859375 -0.65625 C 3.265625 -0.65625 3.582031 -0.773438 3.8125 -1.015625 C 4.050781 -1.265625 4.210938 -1.601562 4.296875 -2.03125 L 5.25 -2.03125 C 5.132812 -1.269531 4.863281 -0.710938 4.4375 -0.359375 C 4.007812 -0.00390625 3.457031 0.171875 2.78125 0.171875 C 2.03125 0.171875 1.429688 -0.101562 0.984375 -0.65625 C 0.535156 -1.207031 0.3125 -1.894531 0.3125 -2.71875 C 0.3125 -3.726562 0.554688 -4.515625 1.046875 -5.078125 C 1.535156 -5.640625 2.160156 -5.921875 2.921875 -5.921875 Z M 2.78125 -5.890625 Z M 2.78125 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-7"> +<path style="stroke:none;" d="M 0.90625 -7.359375 L 1.875 -7.359375 L 1.875 -5.75 L 2.796875 -5.75 L 2.796875 -4.96875 L 1.875 -4.96875 L 1.875 -1.203125 C 1.875 -1.003906 1.941406 -0.875 2.078125 -0.8125 C 2.160156 -0.769531 2.285156 -0.75 2.453125 -0.75 C 2.503906 -0.75 2.554688 -0.75 2.609375 -0.75 C 2.660156 -0.75 2.722656 -0.753906 2.796875 -0.765625 L 2.796875 0 C 2.679688 0.03125 2.5625 0.0507812 2.4375 0.0625 C 2.320312 0.0820312 2.195312 0.09375 2.0625 0.09375 C 1.613281 0.09375 1.304688 -0.0195312 1.140625 -0.25 C 0.984375 -0.488281 0.90625 -0.789062 0.90625 -1.15625 L 0.90625 -4.96875 L 0.125 -4.96875 L 0.125 -5.75 L 0.90625 -5.75 Z M 0.90625 -7.359375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-8"> +<path style="stroke:none;" d="M 2.984375 -0.625 C 3.628906 -0.625 4.070312 -0.863281 4.3125 -1.34375 C 4.550781 -1.832031 4.671875 -2.375 4.671875 -2.96875 C 4.671875 -3.507812 4.582031 -3.945312 4.40625 -4.28125 C 4.132812 -4.8125 3.664062 -5.078125 3 -5.078125 C 2.40625 -5.078125 1.972656 -4.847656 1.703125 -4.390625 C 1.441406 -3.941406 1.3125 -3.398438 1.3125 -2.765625 C 1.3125 -2.148438 1.441406 -1.640625 1.703125 -1.234375 C 1.972656 -0.828125 2.398438 -0.625 2.984375 -0.625 Z M 3.03125 -5.921875 C 3.769531 -5.921875 4.394531 -5.671875 4.90625 -5.171875 C 5.414062 -4.679688 5.671875 -3.957031 5.671875 -3 C 5.671875 -2.070312 5.445312 -1.304688 5 -0.703125 C 4.550781 -0.0976562 3.851562 0.203125 2.90625 0.203125 C 2.113281 0.203125 1.484375 -0.0625 1.015625 -0.59375 C 0.546875 -1.125 0.3125 -1.84375 0.3125 -2.75 C 0.3125 -3.71875 0.554688 -4.488281 1.046875 -5.0625 C 1.535156 -5.632812 2.195312 -5.921875 3.03125 -5.921875 Z M 3 -5.890625 Z M 3 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-9"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph1-10"> +<path style="stroke:none;" d="M 4.890625 -3.234375 L 3.6875 -6.71875 L 2.421875 -3.234375 Z M 3.125 -7.890625 L 4.34375 -7.890625 L 7.203125 0 L 6.03125 0 L 5.234375 -2.359375 L 2.109375 -2.359375 L 1.25 0 L 0.15625 0 Z M 3.125 -7.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-0"> +<path style="stroke:none;" d="M 0 -0.359375 L -7.890625 -0.359375 L -7.890625 -6.625 L 0 -6.625 Z M -0.984375 -5.625 L -6.90625 -5.625 L -6.90625 -1.34375 L -0.984375 -1.34375 Z M -0.984375 -5.625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-1"> +<path style="stroke:none;" d="M -7.890625 -0.9375 L -7.890625 -4.484375 C -7.890625 -5.191406 -7.691406 -5.757812 -7.296875 -6.1875 C -6.898438 -6.613281 -6.34375 -6.828125 -5.625 -6.828125 C -5.007812 -6.828125 -4.472656 -6.632812 -4.015625 -6.25 C -3.554688 -5.875 -3.328125 -5.285156 -3.328125 -4.484375 L -3.328125 -2.015625 L 0 -2.015625 L 0 -0.9375 Z M -5.625 -5.75 C -6.207031 -5.75 -6.601562 -5.535156 -6.8125 -5.109375 C -6.914062 -4.867188 -6.96875 -4.546875 -6.96875 -4.140625 L -6.96875 -2.015625 L -4.234375 -2.015625 L -4.234375 -4.140625 C -4.234375 -4.617188 -4.332031 -5.003906 -4.53125 -5.296875 C -4.738281 -5.597656 -5.101562 -5.75 -5.625 -5.75 Z M -5.625 -5.75 "/> +</symbol> +<symbol overflow="visible" id="glyph2-2"> +<path style="stroke:none;" d="M -5.75 -0.734375 L -5.75 -1.65625 L -4.765625 -1.65625 C -4.953125 -1.726562 -5.179688 -1.910156 -5.453125 -2.203125 C -5.734375 -2.492188 -5.875 -2.832031 -5.875 -3.21875 C -5.875 -3.238281 -5.875 -3.269531 -5.875 -3.3125 C -5.875 -3.351562 -5.867188 -3.425781 -5.859375 -3.53125 L -4.828125 -3.53125 C -4.835938 -3.476562 -4.84375 -3.425781 -4.84375 -3.375 C -4.851562 -3.320312 -4.859375 -3.269531 -4.859375 -3.21875 C -4.859375 -2.726562 -4.703125 -2.351562 -4.390625 -2.09375 C -4.078125 -1.832031 -3.71875 -1.703125 -3.3125 -1.703125 L 0 -1.703125 L 0 -0.734375 Z M -5.75 -0.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph2-3"> +<path style="stroke:none;" d="M -5.875 -3.109375 C -5.875 -3.515625 -5.78125 -3.90625 -5.59375 -4.28125 C -5.40625 -4.664062 -5.15625 -4.960938 -4.84375 -5.171875 C -4.5625 -5.359375 -4.222656 -5.484375 -3.828125 -5.546875 C -3.566406 -5.609375 -3.144531 -5.640625 -2.5625 -5.640625 L -2.5625 -1.421875 C -1.976562 -1.441406 -1.507812 -1.578125 -1.15625 -1.828125 C -0.8125 -2.085938 -0.640625 -2.488281 -0.640625 -3.03125 C -0.640625 -3.539062 -0.804688 -3.945312 -1.140625 -4.25 C -1.328125 -4.414062 -1.550781 -4.535156 -1.8125 -4.609375 L -1.8125 -5.5625 C -1.59375 -5.53125 -1.351562 -5.441406 -1.09375 -5.296875 C -0.832031 -5.160156 -0.625 -5.003906 -0.46875 -4.828125 C -0.175781 -4.535156 0.0195312 -4.175781 0.125 -3.75 C 0.175781 -3.507812 0.203125 -3.242188 0.203125 -2.953125 C 0.203125 -2.234375 -0.0546875 -1.625 -0.578125 -1.125 C -1.097656 -0.632812 -1.828125 -0.390625 -2.765625 -0.390625 C -3.691406 -0.390625 -4.441406 -0.640625 -5.015625 -1.140625 C -5.585938 -1.640625 -5.875 -2.296875 -5.875 -3.109375 Z M -3.328125 -4.640625 C -3.753906 -4.609375 -4.09375 -4.519531 -4.34375 -4.375 C -4.800781 -4.101562 -5.03125 -3.660156 -5.03125 -3.046875 C -5.03125 -2.597656 -4.867188 -2.222656 -4.546875 -1.921875 C -4.234375 -1.628906 -3.828125 -1.472656 -3.328125 -1.453125 Z M -5.890625 -3.015625 Z M -5.890625 -3.015625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-4"> +<path style="stroke:none;" d="M -2.8125 -1.328125 C -2.195312 -1.328125 -1.679688 -1.457031 -1.265625 -1.71875 C -0.847656 -1.976562 -0.640625 -2.394531 -0.640625 -2.96875 C -0.640625 -3.414062 -0.832031 -3.78125 -1.21875 -4.0625 C -1.601562 -4.351562 -2.15625 -4.5 -2.875 -4.5 C -3.601562 -4.5 -4.140625 -4.347656 -4.484375 -4.046875 C -4.835938 -3.753906 -5.015625 -3.390625 -5.015625 -2.953125 C -5.015625 -2.472656 -4.828125 -2.082031 -4.453125 -1.78125 C -4.078125 -1.476562 -3.53125 -1.328125 -2.8125 -1.328125 Z M -5.859375 -2.78125 C -5.859375 -3.21875 -5.765625 -3.585938 -5.578125 -3.890625 C -5.472656 -4.054688 -5.285156 -4.25 -5.015625 -4.46875 L -7.921875 -4.46875 L -7.921875 -5.390625 L 0 -5.390625 L 0 -4.53125 L -0.796875 -4.53125 C -0.441406 -4.300781 -0.1875 -4.03125 -0.03125 -3.71875 C 0.125 -3.414062 0.203125 -3.066406 0.203125 -2.671875 C 0.203125 -2.023438 -0.0625 -1.46875 -0.59375 -1 C -1.132812 -0.53125 -1.851562 -0.296875 -2.75 -0.296875 C -3.59375 -0.296875 -4.320312 -0.507812 -4.9375 -0.9375 C -5.550781 -1.363281 -5.859375 -1.976562 -5.859375 -2.78125 Z M -5.859375 -2.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-5"> +<path style="stroke:none;" d="M -5.71875 -0.703125 L -5.71875 -1.6875 L 0 -1.6875 L 0 -0.703125 Z M -7.890625 -0.703125 L -7.890625 -1.6875 L -6.796875 -1.6875 L -6.796875 -0.703125 Z M -7.890625 -0.703125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-6"> +<path style="stroke:none;" d="M -5.921875 -2.921875 C -5.921875 -3.578125 -5.757812 -4.109375 -5.4375 -4.515625 C -5.125 -4.921875 -4.582031 -5.164062 -3.8125 -5.25 L -3.8125 -4.296875 C -4.164062 -4.242188 -4.457031 -4.113281 -4.6875 -3.90625 C -4.925781 -3.707031 -5.046875 -3.378906 -5.046875 -2.921875 C -5.046875 -2.304688 -4.75 -1.867188 -4.15625 -1.609375 C -3.757812 -1.429688 -3.273438 -1.34375 -2.703125 -1.34375 C -2.128906 -1.34375 -1.644531 -1.460938 -1.25 -1.703125 C -0.851562 -1.953125 -0.65625 -2.335938 -0.65625 -2.859375 C -0.65625 -3.265625 -0.773438 -3.582031 -1.015625 -3.8125 C -1.265625 -4.050781 -1.601562 -4.210938 -2.03125 -4.296875 L -2.03125 -5.25 C -1.269531 -5.132812 -0.710938 -4.863281 -0.359375 -4.4375 C -0.00390625 -4.007812 0.171875 -3.457031 0.171875 -2.78125 C 0.171875 -2.03125 -0.101562 -1.429688 -0.65625 -0.984375 C -1.207031 -0.535156 -1.894531 -0.3125 -2.71875 -0.3125 C -3.726562 -0.3125 -4.515625 -0.554688 -5.078125 -1.046875 C -5.640625 -1.535156 -5.921875 -2.160156 -5.921875 -2.921875 Z M -5.890625 -2.78125 Z M -5.890625 -2.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-7"> +<path style="stroke:none;" d="M -7.359375 -0.90625 L -7.359375 -1.875 L -5.75 -1.875 L -5.75 -2.796875 L -4.96875 -2.796875 L -4.96875 -1.875 L -1.203125 -1.875 C -1.003906 -1.875 -0.875 -1.941406 -0.8125 -2.078125 C -0.769531 -2.160156 -0.75 -2.285156 -0.75 -2.453125 C -0.75 -2.503906 -0.75 -2.554688 -0.75 -2.609375 C -0.75 -2.660156 -0.753906 -2.722656 -0.765625 -2.796875 L 0 -2.796875 C 0.03125 -2.679688 0.0507812 -2.5625 0.0625 -2.4375 C 0.0820312 -2.320312 0.09375 -2.195312 0.09375 -2.0625 C 0.09375 -1.613281 -0.0195312 -1.304688 -0.25 -1.140625 C -0.488281 -0.984375 -0.789062 -0.90625 -1.15625 -0.90625 L -4.96875 -0.90625 L -4.96875 -0.125 L -5.75 -0.125 L -5.75 -0.90625 Z M -7.359375 -0.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-8"> +<path style="stroke:none;" d="M -0.625 -2.984375 C -0.625 -3.628906 -0.863281 -4.070312 -1.34375 -4.3125 C -1.832031 -4.550781 -2.375 -4.671875 -2.96875 -4.671875 C -3.507812 -4.671875 -3.945312 -4.582031 -4.28125 -4.40625 C -4.8125 -4.132812 -5.078125 -3.664062 -5.078125 -3 C -5.078125 -2.40625 -4.847656 -1.972656 -4.390625 -1.703125 C -3.941406 -1.441406 -3.398438 -1.3125 -2.765625 -1.3125 C -2.148438 -1.3125 -1.640625 -1.441406 -1.234375 -1.703125 C -0.828125 -1.972656 -0.625 -2.398438 -0.625 -2.984375 Z M -5.921875 -3.03125 C -5.921875 -3.769531 -5.671875 -4.394531 -5.171875 -4.90625 C -4.679688 -5.414062 -3.957031 -5.671875 -3 -5.671875 C -2.070312 -5.671875 -1.304688 -5.445312 -0.703125 -5 C -0.0976562 -4.550781 0.203125 -3.851562 0.203125 -2.90625 C 0.203125 -2.113281 -0.0625 -1.484375 -0.59375 -1.015625 C -1.125 -0.546875 -1.84375 -0.3125 -2.75 -0.3125 C -3.71875 -0.3125 -4.488281 -0.554688 -5.0625 -1.046875 C -5.632812 -1.535156 -5.921875 -2.195312 -5.921875 -3.03125 Z M -5.890625 -3 Z M -5.890625 -3 "/> +</symbol> +<symbol overflow="visible" id="glyph2-9"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph2-10"> +<path style="stroke:none;" d="M -4.5625 -3.796875 C -4.5625 -4.253906 -4.625 -4.609375 -4.75 -4.859375 C -4.9375 -5.253906 -5.289062 -5.453125 -5.8125 -5.453125 C -6.320312 -5.453125 -6.664062 -5.238281 -6.84375 -4.8125 C -6.945312 -4.582031 -7 -4.234375 -7 -3.765625 L -7 -1.859375 L -4.5625 -1.859375 Z M -0.90625 -4.15625 C -0.90625 -4.8125 -1.097656 -5.28125 -1.484375 -5.5625 C -1.722656 -5.738281 -2.015625 -5.828125 -2.359375 -5.828125 C -2.929688 -5.828125 -3.320312 -5.570312 -3.53125 -5.0625 C -3.632812 -4.789062 -3.6875 -4.429688 -3.6875 -3.984375 L -3.6875 -1.859375 L -0.90625 -1.859375 Z M -7.890625 -0.8125 L -7.890625 -4.203125 C -7.890625 -5.128906 -7.613281 -5.785156 -7.0625 -6.171875 C -6.738281 -6.398438 -6.363281 -6.515625 -5.9375 -6.515625 C -5.4375 -6.515625 -5.023438 -6.375 -4.703125 -6.09375 C -4.535156 -5.945312 -4.382812 -5.734375 -4.25 -5.453125 C -4.09375 -5.859375 -3.921875 -6.160156 -3.734375 -6.359375 C -3.390625 -6.710938 -2.910156 -6.890625 -2.296875 -6.890625 C -1.796875 -6.890625 -1.335938 -6.734375 -0.921875 -6.421875 C -0.304688 -5.941406 0 -5.179688 0 -4.140625 L 0 -0.8125 Z M -7.890625 -0.8125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-0"> +<path style="stroke:none;" d="M 0.421875 0 L 0.421875 -9.46875 L 7.9375 -9.46875 L 7.9375 0 Z M 6.75 -1.1875 L 6.75 -8.28125 L 1.609375 -8.28125 L 1.609375 -1.1875 Z M 6.75 -1.1875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-1"> +<path style="stroke:none;" d="M 7.890625 -9.46875 L 7.890625 -8.34375 L 4.703125 -8.34375 L 4.703125 0 L 3.40625 0 L 3.40625 -8.34375 L 0.21875 -8.34375 L 0.21875 -9.46875 Z M 7.890625 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-2"> +<path style="stroke:none;" d="M 3.71875 -7.0625 C 4.21875 -7.0625 4.695312 -6.945312 5.15625 -6.71875 C 5.613281 -6.488281 5.960938 -6.191406 6.203125 -5.828125 C 6.429688 -5.472656 6.585938 -5.066406 6.671875 -4.609375 C 6.734375 -4.285156 6.765625 -3.773438 6.765625 -3.078125 L 1.703125 -3.078125 C 1.722656 -2.378906 1.890625 -1.816406 2.203125 -1.390625 C 2.515625 -0.972656 2.992188 -0.765625 3.640625 -0.765625 C 4.242188 -0.765625 4.726562 -0.960938 5.09375 -1.359375 C 5.300781 -1.585938 5.445312 -1.859375 5.53125 -2.171875 L 6.671875 -2.171875 C 6.640625 -1.910156 6.539062 -1.625 6.375 -1.3125 C 6.207031 -1 6.015625 -0.742188 5.796875 -0.546875 C 5.453125 -0.203125 5.019531 0.0234375 4.5 0.140625 C 4.21875 0.210938 3.898438 0.25 3.546875 0.25 C 2.679688 0.25 1.953125 -0.0625 1.359375 -0.6875 C 0.765625 -1.3125 0.46875 -2.1875 0.46875 -3.3125 C 0.46875 -4.425781 0.765625 -5.328125 1.359375 -6.015625 C 1.960938 -6.710938 2.75 -7.0625 3.71875 -7.0625 Z M 5.578125 -4 C 5.523438 -4.5 5.414062 -4.898438 5.25 -5.203125 C 4.925781 -5.765625 4.394531 -6.046875 3.65625 -6.046875 C 3.125 -6.046875 2.675781 -5.851562 2.3125 -5.46875 C 1.945312 -5.082031 1.753906 -4.59375 1.734375 -4 Z M 3.609375 -7.078125 Z M 3.609375 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-3"> +<path style="stroke:none;" d="M 1.546875 -2.171875 C 1.578125 -1.773438 1.671875 -1.476562 1.828125 -1.28125 C 2.117188 -0.90625 2.628906 -0.71875 3.359375 -0.71875 C 3.785156 -0.71875 4.160156 -0.8125 4.484375 -1 C 4.816406 -1.1875 4.984375 -1.472656 4.984375 -1.859375 C 4.984375 -2.160156 4.847656 -2.390625 4.578125 -2.546875 C 4.410156 -2.640625 4.082031 -2.75 3.59375 -2.875 L 2.671875 -3.09375 C 2.078125 -3.238281 1.640625 -3.40625 1.359375 -3.59375 C 0.867188 -3.90625 0.625 -4.335938 0.625 -4.890625 C 0.625 -5.546875 0.859375 -6.070312 1.328125 -6.46875 C 1.796875 -6.875 2.425781 -7.078125 3.21875 -7.078125 C 4.257812 -7.078125 5.007812 -6.773438 5.46875 -6.171875 C 5.757812 -5.785156 5.898438 -5.367188 5.890625 -4.921875 L 4.796875 -4.921875 C 4.773438 -5.179688 4.679688 -5.421875 4.515625 -5.640625 C 4.253906 -5.941406 3.796875 -6.09375 3.140625 -6.09375 C 2.691406 -6.09375 2.351562 -6.007812 2.125 -5.84375 C 1.90625 -5.675781 1.796875 -5.453125 1.796875 -5.171875 C 1.796875 -4.867188 1.945312 -4.628906 2.25 -4.453125 C 2.414062 -4.347656 2.664062 -4.253906 3 -4.171875 L 3.765625 -3.984375 C 4.597656 -3.785156 5.160156 -3.585938 5.453125 -3.390625 C 5.898438 -3.097656 6.125 -2.632812 6.125 -2 C 6.125 -1.382812 5.890625 -0.851562 5.421875 -0.40625 C 4.953125 0.0390625 4.242188 0.265625 3.296875 0.265625 C 2.265625 0.265625 1.535156 0.03125 1.109375 -0.4375 C 0.679688 -0.90625 0.453125 -1.484375 0.421875 -2.171875 Z M 3.25 -7.078125 Z M 3.25 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-4"> +<path style="stroke:none;" d="M 1.078125 -8.828125 L 2.25 -8.828125 L 2.25 -6.90625 L 3.359375 -6.90625 L 3.359375 -5.953125 L 2.25 -5.953125 L 2.25 -1.453125 C 2.25 -1.210938 2.332031 -1.050781 2.5 -0.96875 C 2.59375 -0.914062 2.742188 -0.890625 2.953125 -0.890625 C 3.003906 -0.890625 3.0625 -0.890625 3.125 -0.890625 C 3.195312 -0.898438 3.273438 -0.910156 3.359375 -0.921875 L 3.359375 0 C 3.222656 0.0390625 3.082031 0.0664062 2.9375 0.078125 C 2.800781 0.0976562 2.644531 0.109375 2.46875 0.109375 C 1.925781 0.109375 1.554688 -0.0234375 1.359375 -0.296875 C 1.171875 -0.578125 1.078125 -0.941406 1.078125 -1.390625 L 1.078125 -5.953125 L 0.140625 -5.953125 L 0.140625 -6.90625 L 1.078125 -6.90625 Z M 1.078125 -8.828125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-5"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph3-6"> +<path style="stroke:none;" d="M 1.84375 -3.0625 C 1.875 -2.519531 2 -2.082031 2.21875 -1.75 C 2.644531 -1.125 3.394531 -0.8125 4.46875 -0.8125 C 4.957031 -0.8125 5.398438 -0.878906 5.796875 -1.015625 C 6.554688 -1.273438 6.9375 -1.75 6.9375 -2.4375 C 6.9375 -2.957031 6.773438 -3.328125 6.453125 -3.546875 C 6.128906 -3.765625 5.617188 -3.953125 4.921875 -4.109375 L 3.640625 -4.390625 C 2.796875 -4.585938 2.203125 -4.796875 1.859375 -5.015625 C 1.253906 -5.410156 0.953125 -6.003906 0.953125 -6.796875 C 0.953125 -7.648438 1.242188 -8.347656 1.828125 -8.890625 C 2.421875 -9.429688 3.257812 -9.703125 4.34375 -9.703125 C 5.332031 -9.703125 6.171875 -9.460938 6.859375 -8.984375 C 7.554688 -8.503906 7.90625 -7.738281 7.90625 -6.6875 L 6.703125 -6.6875 C 6.640625 -7.195312 6.503906 -7.585938 6.296875 -7.859375 C 5.898438 -8.347656 5.234375 -8.59375 4.296875 -8.59375 C 3.546875 -8.59375 3.003906 -8.429688 2.671875 -8.109375 C 2.335938 -7.796875 2.171875 -7.429688 2.171875 -7.015625 C 2.171875 -6.546875 2.363281 -6.207031 2.75 -6 C 3.007812 -5.863281 3.582031 -5.691406 4.46875 -5.484375 L 5.796875 -5.171875 C 6.441406 -5.023438 6.9375 -4.828125 7.28125 -4.578125 C 7.882812 -4.128906 8.1875 -3.488281 8.1875 -2.65625 C 8.1875 -1.601562 7.804688 -0.847656 7.046875 -0.390625 C 6.285156 0.0546875 5.398438 0.28125 4.390625 0.28125 C 3.210938 0.28125 2.289062 -0.0195312 1.625 -0.625 C 0.957031 -1.21875 0.628906 -2.03125 0.640625 -3.0625 Z M 4.4375 -9.734375 Z M 4.4375 -9.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph3-7"> +<path style="stroke:none;" d="M 3.90625 -9.625 C 3.226562 -8.3125 2.789062 -7.347656 2.59375 -6.734375 C 2.289062 -5.785156 2.140625 -4.695312 2.140625 -3.46875 C 2.140625 -2.21875 2.3125 -1.078125 2.65625 -0.046875 C 2.875 0.585938 3.296875 1.5 3.921875 2.6875 L 3.140625 2.6875 C 2.515625 1.707031 2.125 1.082031 1.96875 0.8125 C 1.820312 0.539062 1.660156 0.175781 1.484375 -0.28125 C 1.242188 -0.914062 1.078125 -1.597656 0.984375 -2.328125 C 0.941406 -2.691406 0.921875 -3.046875 0.921875 -3.390625 C 0.921875 -4.660156 1.117188 -5.789062 1.515625 -6.78125 C 1.765625 -7.414062 2.289062 -8.363281 3.09375 -9.625 Z M 3.90625 -9.625 "/> +</symbol> +<symbol overflow="visible" id="glyph3-8"> +<path style="stroke:none;" d="M 0.84375 -6.875 L 2.03125 -6.875 L 2.03125 0 L 0.84375 0 Z M 0.84375 -9.46875 L 2.03125 -9.46875 L 2.03125 -8.15625 L 0.84375 -8.15625 Z M 0.84375 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-9"> +<path style="stroke:none;" d="M 0.84375 -6.90625 L 2 -6.90625 L 2 -5.921875 C 2.269531 -6.265625 2.519531 -6.515625 2.75 -6.671875 C 3.125 -6.929688 3.554688 -7.0625 4.046875 -7.0625 C 4.597656 -7.0625 5.039062 -6.925781 5.375 -6.65625 C 5.5625 -6.5 5.734375 -6.269531 5.890625 -5.96875 C 6.148438 -6.34375 6.453125 -6.617188 6.796875 -6.796875 C 7.148438 -6.972656 7.539062 -7.0625 7.96875 -7.0625 C 8.90625 -7.0625 9.539062 -6.722656 9.875 -6.046875 C 10.050781 -5.691406 10.140625 -5.207031 10.140625 -4.59375 L 10.140625 0 L 8.9375 0 L 8.9375 -4.796875 C 8.9375 -5.253906 8.820312 -5.566406 8.59375 -5.734375 C 8.363281 -5.910156 8.082031 -6 7.75 -6 C 7.289062 -6 6.894531 -5.847656 6.5625 -5.546875 C 6.238281 -5.242188 6.078125 -4.734375 6.078125 -4.015625 L 6.078125 0 L 4.90625 0 L 4.90625 -4.5 C 4.90625 -4.96875 4.847656 -5.3125 4.734375 -5.53125 C 4.554688 -5.851562 4.226562 -6.015625 3.75 -6.015625 C 3.3125 -6.015625 2.910156 -5.84375 2.546875 -5.5 C 2.191406 -5.164062 2.015625 -4.550781 2.015625 -3.65625 L 2.015625 0 L 0.84375 0 Z M 0.84375 -6.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph3-10"> +<path style="stroke:none;" d="M 2.015625 -6.90625 L 2.015625 -2.328125 C 2.015625 -1.972656 2.066406 -1.679688 2.171875 -1.453125 C 2.378906 -1.046875 2.765625 -0.84375 3.328125 -0.84375 C 4.140625 -0.84375 4.691406 -1.203125 4.984375 -1.921875 C 5.140625 -2.304688 5.21875 -2.835938 5.21875 -3.515625 L 5.21875 -6.90625 L 6.375 -6.90625 L 6.375 0 L 5.28125 0 L 5.296875 -1.015625 C 5.148438 -0.753906 4.960938 -0.535156 4.734375 -0.359375 C 4.296875 0.00390625 3.757812 0.1875 3.125 0.1875 C 2.144531 0.1875 1.472656 -0.140625 1.109375 -0.796875 C 0.921875 -1.148438 0.828125 -1.625 0.828125 -2.21875 L 0.828125 -6.90625 Z M 3.609375 -7.078125 Z M 3.609375 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-11"> +<path style="stroke:none;" d="M 0.890625 -9.46875 L 2.046875 -9.46875 L 2.046875 0 L 0.890625 0 Z M 0.890625 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-12"> +<path style="stroke:none;" d="M 1.734375 -1.84375 C 1.734375 -1.5 1.851562 -1.226562 2.09375 -1.03125 C 2.34375 -0.84375 2.640625 -0.75 2.984375 -0.75 C 3.390625 -0.75 3.785156 -0.84375 4.171875 -1.03125 C 4.804688 -1.351562 5.125 -1.867188 5.125 -2.578125 L 5.125 -3.515625 C 4.988281 -3.421875 4.804688 -3.34375 4.578125 -3.28125 C 4.359375 -3.226562 4.140625 -3.1875 3.921875 -3.15625 L 3.21875 -3.0625 C 2.800781 -3.007812 2.488281 -2.921875 2.28125 -2.796875 C 1.914062 -2.597656 1.734375 -2.28125 1.734375 -1.84375 Z M 4.546875 -4.1875 C 4.816406 -4.21875 5 -4.328125 5.09375 -4.515625 C 5.132812 -4.617188 5.15625 -4.769531 5.15625 -4.96875 C 5.15625 -5.363281 5.015625 -5.648438 4.734375 -5.828125 C 4.453125 -6.003906 4.050781 -6.09375 3.53125 -6.09375 C 2.925781 -6.09375 2.5 -5.929688 2.25 -5.609375 C 2.101562 -5.421875 2.007812 -5.148438 1.96875 -4.796875 L 0.890625 -4.796875 C 0.910156 -5.648438 1.1875 -6.242188 1.71875 -6.578125 C 2.25 -6.910156 2.863281 -7.078125 3.5625 -7.078125 C 4.375 -7.078125 5.03125 -6.921875 5.53125 -6.609375 C 6.039062 -6.296875 6.296875 -5.8125 6.296875 -5.15625 L 6.296875 -1.1875 C 6.296875 -1.0625 6.316406 -0.960938 6.359375 -0.890625 C 6.410156 -0.816406 6.515625 -0.78125 6.671875 -0.78125 C 6.722656 -0.78125 6.78125 -0.785156 6.84375 -0.796875 C 6.914062 -0.804688 6.988281 -0.816406 7.0625 -0.828125 L 7.0625 0.03125 C 6.875 0.0820312 6.734375 0.113281 6.640625 0.125 C 6.546875 0.132812 6.421875 0.140625 6.265625 0.140625 C 5.859375 0.140625 5.566406 0 5.390625 -0.28125 C 5.296875 -0.425781 5.226562 -0.640625 5.1875 -0.921875 C 4.945312 -0.609375 4.601562 -0.335938 4.15625 -0.109375 C 3.71875 0.117188 3.234375 0.234375 2.703125 0.234375 C 2.066406 0.234375 1.546875 0.0390625 1.140625 -0.34375 C 0.734375 -0.738281 0.53125 -1.226562 0.53125 -1.8125 C 0.53125 -2.445312 0.726562 -2.941406 1.125 -3.296875 C 1.53125 -3.648438 2.054688 -3.867188 2.703125 -3.953125 Z M 3.59375 -7.078125 Z M 3.59375 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-13"> +<path style="stroke:none;" d="M 1.578125 -3.375 C 1.578125 -2.632812 1.734375 -2.015625 2.046875 -1.515625 C 2.367188 -1.015625 2.875 -0.765625 3.5625 -0.765625 C 4.101562 -0.765625 4.546875 -0.992188 4.890625 -1.453125 C 5.234375 -1.921875 5.40625 -2.585938 5.40625 -3.453125 C 5.40625 -4.316406 5.226562 -4.957031 4.875 -5.375 C 4.519531 -5.800781 4.078125 -6.015625 3.546875 -6.015625 C 2.960938 -6.015625 2.488281 -5.789062 2.125 -5.34375 C 1.757812 -4.894531 1.578125 -4.238281 1.578125 -3.375 Z M 3.328125 -7.03125 C 3.859375 -7.03125 4.300781 -6.914062 4.65625 -6.6875 C 4.863281 -6.5625 5.097656 -6.335938 5.359375 -6.015625 L 5.359375 -9.5 L 6.484375 -9.5 L 6.484375 0 L 5.4375 0 L 5.4375 -0.953125 C 5.164062 -0.535156 4.84375 -0.226562 4.46875 -0.03125 C 4.101562 0.15625 3.679688 0.25 3.203125 0.25 C 2.429688 0.25 1.765625 -0.0703125 1.203125 -0.71875 C 0.640625 -1.375 0.359375 -2.238281 0.359375 -3.3125 C 0.359375 -4.3125 0.613281 -5.179688 1.125 -5.921875 C 1.644531 -6.660156 2.378906 -7.03125 3.328125 -7.03125 Z M 3.328125 -7.03125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-14"> +<path style="stroke:none;" d="M 4.640625 -1.09375 C 5.078125 -1.09375 5.4375 -1.140625 5.71875 -1.234375 C 6.207031 -1.398438 6.613281 -1.722656 6.9375 -2.203125 C 7.1875 -2.578125 7.367188 -3.066406 7.484375 -3.671875 C 7.546875 -4.023438 7.578125 -4.351562 7.578125 -4.65625 C 7.578125 -5.832031 7.34375 -6.742188 6.875 -7.390625 C 6.414062 -8.046875 5.664062 -8.375 4.625 -8.375 L 2.359375 -8.375 L 2.359375 -1.09375 Z M 1.0625 -9.46875 L 4.90625 -9.46875 C 6.207031 -9.46875 7.210938 -9.003906 7.921875 -8.078125 C 8.566406 -7.242188 8.890625 -6.175781 8.890625 -4.875 C 8.890625 -3.875 8.703125 -2.96875 8.328125 -2.15625 C 7.660156 -0.71875 6.515625 0 4.890625 0 L 1.0625 0 Z M 1.0625 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-15"> +<path style="stroke:none;" d="M 0.453125 2.6875 C 1.140625 1.363281 1.582031 0.394531 1.78125 -0.21875 C 2.082031 -1.144531 2.234375 -2.226562 2.234375 -3.46875 C 2.234375 -4.707031 2.054688 -5.84375 1.703125 -6.875 C 1.492188 -7.507812 1.070312 -8.425781 0.4375 -9.625 L 1.21875 -9.625 C 1.882812 -8.570312 2.285156 -7.921875 2.421875 -7.671875 C 2.554688 -7.421875 2.707031 -7.078125 2.875 -6.640625 C 3.082031 -6.109375 3.226562 -5.578125 3.3125 -5.046875 C 3.40625 -4.523438 3.453125 -4.023438 3.453125 -3.546875 C 3.453125 -2.265625 3.25 -1.128906 2.84375 -0.140625 C 2.59375 0.503906 2.066406 1.445312 1.265625 2.6875 Z M 0.453125 2.6875 "/> +</symbol> +</g> +<clipPath id="clip1"> + <path d="M 31.296875 204 L 231.382812 204 L 231.382812 206 L 31.296875 206 Z M 31.296875 204 "/> +</clipPath> +<clipPath id="clip2"> + <path d="M 31.296875 155 L 231.382812 155 L 231.382812 156 L 31.296875 156 Z M 31.296875 155 "/> +</clipPath> +<clipPath id="clip3"> + <path d="M 31.296875 106 L 231.382812 106 L 231.382812 107 L 31.296875 107 Z M 31.296875 106 "/> +</clipPath> +<clipPath id="clip4"> + <path d="M 31.296875 57 L 231.382812 57 L 231.382812 58 L 31.296875 58 Z M 31.296875 57 "/> +</clipPath> +<clipPath id="clip5"> + <path d="M 64 40.371094 L 66 40.371094 L 66 238.265625 L 64 238.265625 Z M 64 40.371094 "/> +</clipPath> +<clipPath id="clip6"> + <path d="M 114 40.371094 L 116 40.371094 L 116 238.265625 L 114 238.265625 Z M 114 40.371094 "/> +</clipPath> +<clipPath id="clip7"> + <path d="M 164 40.371094 L 165 40.371094 L 165 238.265625 L 164 238.265625 Z M 164 40.371094 "/> +</clipPath> +<clipPath id="clip8"> + <path d="M 213 40.371094 L 215 40.371094 L 215 238.265625 L 213 238.265625 Z M 213 40.371094 "/> +</clipPath> +<clipPath id="clip9"> + <path d="M 31.296875 228 L 231.382812 228 L 231.382812 230 L 31.296875 230 Z M 31.296875 228 "/> +</clipPath> +<clipPath id="clip10"> + <path d="M 31.296875 179 L 231.382812 179 L 231.382812 181 L 31.296875 181 Z M 31.296875 179 "/> +</clipPath> +<clipPath id="clip11"> + <path d="M 31.296875 130 L 231.382812 130 L 231.382812 132 L 31.296875 132 Z M 31.296875 130 "/> +</clipPath> +<clipPath id="clip12"> + <path d="M 31.296875 81 L 231.382812 81 L 231.382812 83 L 31.296875 83 Z M 31.296875 81 "/> +</clipPath> +<clipPath id="clip13"> + <path d="M 39 40.371094 L 41 40.371094 L 41 238.265625 L 39 238.265625 Z M 39 40.371094 "/> +</clipPath> +<clipPath id="clip14"> + <path d="M 89 40.371094 L 91 40.371094 L 91 238.265625 L 89 238.265625 Z M 89 40.371094 "/> +</clipPath> +<clipPath id="clip15"> + <path d="M 139 40.371094 L 141 40.371094 L 141 238.265625 L 139 238.265625 Z M 139 40.371094 "/> +</clipPath> +<clipPath id="clip16"> + <path d="M 188 40.371094 L 190 40.371094 L 190 238.265625 L 188 238.265625 Z M 188 40.371094 "/> +</clipPath> +<clipPath id="clip17"> + <path d="M 31.296875 40.371094 L 231.382812 40.371094 L 231.382812 238.265625 L 31.296875 238.265625 Z M 31.296875 40.371094 "/> +</clipPath> +<clipPath id="clip18"> + <path d="M 236.867188 204 L 436.953125 204 L 436.953125 206 L 236.867188 206 Z M 236.867188 204 "/> +</clipPath> +<clipPath id="clip19"> + <path d="M 236.867188 155 L 436.953125 155 L 436.953125 156 L 236.867188 156 Z M 236.867188 155 "/> +</clipPath> +<clipPath id="clip20"> + <path d="M 236.867188 106 L 436.953125 106 L 436.953125 107 L 236.867188 107 Z M 236.867188 106 "/> +</clipPath> +<clipPath id="clip21"> + <path d="M 236.867188 57 L 436.953125 57 L 436.953125 58 L 236.867188 58 Z M 236.867188 57 "/> +</clipPath> +<clipPath id="clip22"> + <path d="M 270 40.371094 L 272 40.371094 L 272 238.265625 L 270 238.265625 Z M 270 40.371094 "/> +</clipPath> +<clipPath id="clip23"> + <path d="M 320 40.371094 L 321 40.371094 L 321 238.265625 L 320 238.265625 Z M 320 40.371094 "/> +</clipPath> +<clipPath id="clip24"> + <path d="M 369 40.371094 L 371 40.371094 L 371 238.265625 L 369 238.265625 Z M 369 40.371094 "/> +</clipPath> +<clipPath id="clip25"> + <path d="M 419 40.371094 L 420 40.371094 L 420 238.265625 L 419 238.265625 Z M 419 40.371094 "/> +</clipPath> +<clipPath id="clip26"> + <path d="M 236.867188 228 L 436.953125 228 L 436.953125 230 L 236.867188 230 Z M 236.867188 228 "/> +</clipPath> +<clipPath id="clip27"> + <path d="M 236.867188 179 L 436.953125 179 L 436.953125 181 L 236.867188 181 Z M 236.867188 179 "/> +</clipPath> +<clipPath id="clip28"> + <path d="M 236.867188 130 L 436.953125 130 L 436.953125 132 L 236.867188 132 Z M 236.867188 130 "/> +</clipPath> +<clipPath id="clip29"> + <path d="M 236.867188 81 L 436.953125 81 L 436.953125 83 L 236.867188 83 Z M 236.867188 81 "/> +</clipPath> +<clipPath id="clip30"> + <path d="M 245 40.371094 L 247 40.371094 L 247 238.265625 L 245 238.265625 Z M 245 40.371094 "/> +</clipPath> +<clipPath id="clip31"> + <path d="M 295 40.371094 L 297 40.371094 L 297 238.265625 L 295 238.265625 Z M 295 40.371094 "/> +</clipPath> +<clipPath id="clip32"> + <path d="M 344 40.371094 L 346 40.371094 L 346 238.265625 L 344 238.265625 Z M 344 40.371094 "/> +</clipPath> +<clipPath id="clip33"> + <path d="M 394 40.371094 L 396 40.371094 L 396 238.265625 L 394 238.265625 Z M 394 40.371094 "/> +</clipPath> +<clipPath id="clip34"> + <path d="M 236.867188 40.371094 L 436.953125 40.371094 L 436.953125 238.265625 L 236.867188 238.265625 Z M 236.867188 40.371094 "/> +</clipPath> +<clipPath id="clip35"> + <path d="M 442.433594 204 L 642.519531 204 L 642.519531 206 L 442.433594 206 Z M 442.433594 204 "/> +</clipPath> +<clipPath id="clip36"> + <path d="M 442.433594 155 L 642.519531 155 L 642.519531 156 L 442.433594 156 Z M 442.433594 155 "/> +</clipPath> +<clipPath id="clip37"> + <path d="M 442.433594 106 L 642.519531 106 L 642.519531 107 L 442.433594 107 Z M 442.433594 106 "/> +</clipPath> +<clipPath id="clip38"> + <path d="M 442.433594 57 L 642.519531 57 L 642.519531 58 L 442.433594 58 Z M 442.433594 57 "/> +</clipPath> +<clipPath id="clip39"> + <path d="M 476 40.371094 L 477 40.371094 L 477 238.265625 L 476 238.265625 Z M 476 40.371094 "/> +</clipPath> +<clipPath id="clip40"> + <path d="M 525 40.371094 L 527 40.371094 L 527 238.265625 L 525 238.265625 Z M 525 40.371094 "/> +</clipPath> +<clipPath id="clip41"> + <path d="M 575 40.371094 L 576 40.371094 L 576 238.265625 L 575 238.265625 Z M 575 40.371094 "/> +</clipPath> +<clipPath id="clip42"> + <path d="M 624 40.371094 L 626 40.371094 L 626 238.265625 L 624 238.265625 Z M 624 40.371094 "/> +</clipPath> +<clipPath id="clip43"> + <path d="M 442.433594 228 L 642.519531 228 L 642.519531 230 L 442.433594 230 Z M 442.433594 228 "/> +</clipPath> +<clipPath id="clip44"> + <path d="M 442.433594 179 L 642.519531 179 L 642.519531 181 L 442.433594 181 Z M 442.433594 179 "/> +</clipPath> +<clipPath id="clip45"> + <path d="M 442.433594 130 L 642.519531 130 L 642.519531 132 L 442.433594 132 Z M 442.433594 130 "/> +</clipPath> +<clipPath id="clip46"> + <path d="M 442.433594 81 L 642.519531 81 L 642.519531 83 L 442.433594 83 Z M 442.433594 81 "/> +</clipPath> +<clipPath id="clip47"> + <path d="M 450 40.371094 L 453 40.371094 L 453 238.265625 L 450 238.265625 Z M 450 40.371094 "/> +</clipPath> +<clipPath id="clip48"> + <path d="M 500 40.371094 L 502 40.371094 L 502 238.265625 L 500 238.265625 Z M 500 40.371094 "/> +</clipPath> +<clipPath id="clip49"> + <path d="M 550 40.371094 L 552 40.371094 L 552 238.265625 L 550 238.265625 Z M 550 40.371094 "/> +</clipPath> +<clipPath id="clip50"> + <path d="M 599 40.371094 L 601 40.371094 L 601 238.265625 L 599 238.265625 Z M 599 40.371094 "/> +</clipPath> +<clipPath id="clip51"> + <path d="M 442.433594 40.371094 L 642.519531 40.371094 L 642.519531 238.265625 L 442.433594 238.265625 Z M 442.433594 40.371094 "/> +</clipPath> +<clipPath id="clip52"> + <path d="M 31.296875 23.347656 L 231.382812 23.347656 L 231.382812 40.375 L 31.296875 40.375 Z M 31.296875 23.347656 "/> +</clipPath> +<clipPath id="clip53"> + <path d="M 236.867188 23.347656 L 436.953125 23.347656 L 436.953125 40.375 L 236.867188 40.375 Z M 236.867188 23.347656 "/> +</clipPath> +<clipPath id="clip54"> + <path d="M 442.433594 23.347656 L 642.519531 23.347656 L 642.519531 40.375 L 442.433594 40.375 Z M 442.433594 23.347656 "/> +</clipPath> +</defs> +<g id="surface19"> +<g clip-path="url(#clip1)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 204.738281 L 231.386719 204.738281 "/> +</g> +<g clip-path="url(#clip2)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 155.675781 L 231.386719 155.675781 "/> +</g> +<g clip-path="url(#clip3)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 106.609375 L 231.386719 106.609375 "/> +</g> +<g clip-path="url(#clip4)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 57.546875 L 231.386719 57.546875 "/> +</g> +<g clip-path="url(#clip5)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.199219 238.265625 L 65.199219 40.371094 "/> +</g> +<g clip-path="url(#clip6)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.804688 238.265625 L 114.804688 40.371094 "/> +</g> +<g clip-path="url(#clip7)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.414062 238.265625 L 164.414062 40.371094 "/> +</g> +<g clip-path="url(#clip8)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.023438 238.265625 L 214.023438 40.371094 "/> +</g> +<g clip-path="url(#clip9)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 229.273438 L 231.386719 229.273438 "/> +</g> +<g clip-path="url(#clip10)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 180.207031 L 231.386719 180.207031 "/> +</g> +<g clip-path="url(#clip11)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 131.140625 L 231.386719 131.140625 "/> +</g> +<g clip-path="url(#clip12)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 82.078125 L 231.386719 82.078125 "/> +</g> +<g clip-path="url(#clip13)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.394531 238.265625 L 40.394531 40.371094 "/> +</g> +<g clip-path="url(#clip14)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.003906 238.265625 L 90.003906 40.371094 "/> +</g> +<g clip-path="url(#clip15)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.609375 238.265625 L 139.609375 40.371094 "/> +</g> +<g clip-path="url(#clip16)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.21875 238.265625 L 189.21875 40.371094 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 195.464844 103.976562 C 195.464844 105.871094 192.621094 105.871094 192.621094 103.976562 C 192.621094 102.082031 195.464844 102.082031 195.464844 103.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.304688 147.125 C 131.304688 149.019531 128.460938 149.019531 128.460938 147.125 C 128.460938 145.230469 131.304688 145.230469 131.304688 147.125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.304688 108.269531 C 125.304688 110.164062 122.460938 110.164062 122.460938 108.269531 C 122.460938 106.371094 125.304688 106.371094 125.304688 108.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.574219 125.082031 C 145.574219 126.980469 142.730469 126.980469 142.730469 125.082031 C 142.730469 123.1875 145.574219 123.1875 145.574219 125.082031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.414062 121.566406 C 142.414062 123.460938 139.570312 123.460938 139.570312 121.566406 C 139.570312 119.671875 142.414062 119.671875 142.414062 121.566406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.363281 129.8125 C 153.363281 131.707031 150.523438 131.707031 150.523438 129.8125 C 150.523438 127.917969 153.363281 127.917969 153.363281 129.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 156.652344 112.917969 C 156.652344 114.8125 153.808594 114.8125 153.808594 112.917969 C 153.808594 111.023438 156.652344 111.023438 156.652344 112.917969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 192.996094 90.554688 C 192.996094 92.449219 190.152344 92.449219 190.152344 90.554688 C 190.152344 88.660156 192.996094 88.660156 192.996094 90.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.910156 148.796875 C 128.910156 150.691406 126.066406 150.691406 126.066406 148.796875 C 126.066406 146.902344 128.910156 146.902344 128.910156 148.796875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 164.984375 92.574219 C 164.984375 94.46875 162.140625 94.46875 162.140625 92.574219 C 162.140625 90.679688 164.984375 90.679688 164.984375 92.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.910156 101.820312 C 157.910156 103.714844 155.066406 103.714844 155.066406 101.820312 C 155.066406 99.925781 157.910156 99.925781 157.910156 101.820312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 110.714844 141.730469 C 110.714844 143.625 107.875 143.625 107.875 141.730469 C 107.875 139.835938 110.714844 139.835938 110.714844 141.730469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 123.898438 127.230469 C 123.898438 129.125 121.058594 129.125 121.058594 127.230469 C 121.058594 125.332031 123.898438 125.332031 123.898438 127.230469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 121.914062 151.53125 C 121.914062 153.425781 119.074219 153.425781 119.074219 151.53125 C 119.074219 149.632812 121.914062 149.632812 121.914062 151.53125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 177.257812 124.71875 C 177.257812 126.617188 174.414062 126.617188 174.414062 124.71875 C 174.414062 122.824219 177.257812 122.824219 177.257812 124.71875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.164062 131.300781 C 143.164062 133.195312 140.320312 133.195312 140.320312 131.300781 C 140.320312 129.40625 143.164062 129.40625 143.164062 131.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.511719 120.78125 C 144.511719 122.675781 141.667969 122.675781 141.667969 120.78125 C 141.667969 118.886719 144.511719 118.886719 144.511719 120.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 147.148438 117.976562 C 147.148438 119.875 144.304688 119.875 144.304688 117.976562 C 144.304688 116.082031 147.148438 116.082031 147.148438 117.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.589844 134.742188 C 146.589844 136.636719 143.746094 136.636719 143.746094 134.742188 C 143.746094 132.847656 146.589844 132.847656 146.589844 134.742188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 135.964844 148.679688 C 135.964844 150.574219 133.121094 150.574219 133.121094 148.679688 C 133.121094 146.78125 135.964844 146.78125 135.964844 148.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.707031 110.480469 C 169.707031 112.378906 166.867188 112.378906 166.867188 110.480469 C 166.867188 108.585938 169.707031 108.585938 169.707031 110.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.402344 201.289062 C 97.402344 203.183594 94.558594 203.183594 94.558594 201.289062 C 94.558594 199.394531 97.402344 199.394531 97.402344 201.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.828125 125.9375 C 133.828125 127.832031 130.984375 127.832031 130.984375 125.9375 C 130.984375 124.042969 133.828125 124.042969 133.828125 125.9375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 138.304688 135.417969 C 138.304688 137.3125 135.460938 137.3125 135.460938 135.417969 C 135.460938 133.523438 138.304688 133.523438 138.304688 135.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 100.640625 152.292969 C 100.640625 154.191406 97.800781 154.191406 97.800781 152.292969 C 97.800781 150.398438 100.640625 150.398438 100.640625 152.292969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.511719 139.847656 C 143.511719 141.742188 140.667969 141.742188 140.667969 139.847656 C 140.667969 137.953125 143.511719 137.953125 143.511719 139.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 139.925781 87.128906 C 139.925781 89.023438 137.085938 89.023438 137.085938 87.128906 C 137.085938 85.234375 139.925781 85.234375 139.925781 87.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 165.097656 129.480469 C 165.097656 131.375 162.253906 131.375 162.253906 129.480469 C 162.253906 127.585938 165.097656 127.585938 165.097656 129.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.183594 120.117188 C 128.183594 122.011719 125.34375 122.011719 125.34375 120.117188 C 125.34375 118.222656 128.183594 118.222656 128.183594 120.117188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 106.449219 134.386719 C 106.449219 136.28125 103.605469 136.28125 103.605469 134.386719 C 103.605469 132.492188 106.449219 132.492188 106.449219 134.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.035156 114.929688 C 149.035156 116.828125 146.191406 116.828125 146.191406 114.929688 C 146.191406 113.035156 149.035156 113.035156 149.035156 114.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.683594 132.527344 C 151.683594 134.421875 148.839844 134.421875 148.839844 132.527344 C 148.839844 130.628906 151.683594 130.628906 151.683594 132.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.484375 137.027344 C 158.484375 138.921875 155.640625 138.921875 155.640625 137.027344 C 155.640625 135.128906 158.484375 135.128906 158.484375 137.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 124.859375 169.433594 C 124.859375 171.332031 122.015625 171.332031 122.015625 169.433594 C 122.015625 167.539062 124.859375 167.539062 124.859375 169.433594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.5625 146.480469 C 140.5625 148.375 137.722656 148.375 137.722656 146.480469 C 137.722656 144.585938 140.5625 144.585938 140.5625 146.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.105469 110.332031 C 140.105469 112.226562 137.261719 112.226562 137.261719 110.332031 C 137.261719 108.4375 140.105469 108.4375 140.105469 110.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 122.144531 155.179688 C 122.144531 157.074219 119.300781 157.074219 119.300781 155.179688 C 119.300781 153.285156 122.144531 153.285156 122.144531 155.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 118.253906 159.582031 C 118.253906 161.476562 115.410156 161.476562 115.410156 159.582031 C 115.410156 157.6875 118.253906 157.6875 118.253906 159.582031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 114.953125 168.210938 C 114.953125 170.105469 112.109375 170.105469 112.109375 168.210938 C 112.109375 166.316406 114.953125 166.316406 114.953125 168.210938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.128906 164.996094 C 116.128906 166.890625 113.285156 166.890625 113.285156 164.996094 C 113.285156 163.101562 116.128906 163.101562 116.128906 164.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 156.929688 133.375 C 156.929688 135.269531 154.089844 135.269531 154.089844 133.375 C 154.089844 131.480469 156.929688 131.480469 156.929688 133.375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 121.738281 128.585938 C 121.738281 130.480469 118.894531 130.480469 118.894531 128.585938 C 118.894531 126.691406 121.738281 126.691406 121.738281 128.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.511719 104.972656 C 115.511719 106.867188 112.667969 106.867188 112.667969 104.972656 C 112.667969 103.078125 115.511719 103.078125 115.511719 104.972656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 114.585938 139.351562 C 114.585938 141.246094 111.742188 141.246094 111.742188 139.351562 C 111.742188 137.457031 114.585938 137.457031 114.585938 139.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 190.304688 87.300781 C 190.304688 89.195312 187.464844 89.195312 187.464844 87.300781 C 187.464844 85.40625 190.304688 85.40625 190.304688 87.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 173.488281 134.363281 C 173.488281 136.261719 170.644531 136.261719 170.644531 134.363281 C 170.644531 132.46875 173.488281 132.46875 173.488281 134.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.210938 147.191406 C 168.210938 149.085938 165.367188 149.085938 165.367188 147.191406 C 165.367188 145.296875 168.210938 145.296875 168.210938 147.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 154.019531 103.921875 C 154.019531 105.816406 151.179688 105.816406 151.179688 103.921875 C 151.179688 102.023438 154.019531 102.023438 154.019531 103.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.859375 153.652344 C 131.859375 155.546875 129.019531 155.546875 129.019531 153.652344 C 129.019531 151.757812 131.859375 151.757812 131.859375 153.652344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 148.421875 163.28125 C 148.421875 165.175781 145.578125 165.175781 145.578125 163.28125 C 145.578125 161.382812 148.421875 161.382812 148.421875 163.28125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 135.046875 124.390625 C 135.046875 126.285156 132.207031 126.285156 132.207031 124.390625 C 132.207031 122.496094 135.046875 122.496094 135.046875 124.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 166.214844 135.488281 C 166.214844 137.382812 163.375 137.382812 163.375 135.488281 C 163.375 133.59375 166.214844 133.59375 166.214844 135.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.050781 111.589844 C 157.050781 113.484375 154.207031 113.484375 154.207031 111.589844 C 154.207031 109.695312 157.050781 109.695312 157.050781 111.589844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 122.390625 149.925781 C 122.390625 151.820312 119.546875 151.820312 119.546875 149.925781 C 119.546875 148.03125 122.390625 148.03125 122.390625 149.925781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 117.816406 141.8125 C 117.816406 143.707031 114.976562 143.707031 114.976562 141.8125 C 114.976562 139.917969 117.816406 139.917969 117.816406 141.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 159.816406 140.722656 C 159.816406 142.617188 156.976562 142.617188 156.976562 140.722656 C 156.976562 138.828125 159.816406 138.828125 159.816406 140.722656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.855469 115.996094 C 146.855469 117.894531 144.011719 117.894531 144.011719 115.996094 C 144.011719 114.101562 146.855469 114.101562 146.855469 115.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.488281 126.515625 C 145.488281 128.410156 142.644531 128.410156 142.644531 126.515625 C 142.644531 124.621094 145.488281 124.621094 145.488281 126.515625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.597656 96.871094 C 149.597656 98.765625 146.753906 98.765625 146.753906 96.871094 C 146.753906 94.976562 149.597656 94.976562 149.597656 96.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.273438 135.070312 C 136.273438 136.964844 133.433594 136.964844 133.433594 135.070312 C 133.433594 133.175781 136.273438 133.175781 136.273438 135.070312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 154.511719 146.910156 C 154.511719 148.804688 151.667969 148.804688 151.667969 146.910156 C 151.667969 145.015625 154.511719 145.015625 154.511719 146.910156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 173.601562 137.207031 C 173.601562 139.101562 170.757812 139.101562 170.757812 137.207031 C 170.757812 135.3125 173.601562 135.3125 173.601562 137.207031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 156.988281 122.066406 C 156.988281 123.960938 154.148438 123.960938 154.148438 122.066406 C 154.148438 120.171875 156.988281 120.171875 156.988281 122.066406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.359375 114.390625 C 160.359375 116.289062 157.515625 116.289062 157.515625 114.390625 C 157.515625 112.496094 160.359375 112.496094 160.359375 114.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.871094 125.023438 C 115.871094 126.917969 113.027344 126.917969 113.027344 125.023438 C 113.027344 123.128906 115.871094 123.128906 115.871094 125.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 130.777344 141.15625 C 130.777344 143.050781 127.933594 143.050781 127.933594 141.15625 C 127.933594 139.261719 130.777344 139.261719 130.777344 141.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.878906 140.933594 C 141.878906 142.828125 139.035156 142.828125 139.035156 140.933594 C 139.035156 139.039062 141.878906 139.039062 141.878906 140.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.722656 156.152344 C 97.722656 158.046875 94.878906 158.046875 94.878906 156.152344 C 94.878906 154.257812 97.722656 154.257812 97.722656 156.152344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 130.128906 131.871094 C 130.128906 133.769531 127.285156 133.769531 127.285156 131.871094 C 127.285156 129.976562 130.128906 129.976562 130.128906 131.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.671875 145.546875 C 125.671875 147.441406 122.828125 147.441406 122.828125 145.546875 C 122.828125 143.652344 125.671875 143.652344 125.671875 145.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.4375 119.386719 C 136.4375 121.28125 133.597656 121.28125 133.597656 119.386719 C 133.597656 117.492188 136.4375 117.492188 136.4375 119.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 137.339844 163.976562 C 137.339844 165.871094 134.496094 165.871094 134.496094 163.976562 C 134.496094 162.082031 137.339844 162.082031 137.339844 163.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.097656 140.574219 C 141.097656 142.46875 138.253906 142.46875 138.253906 140.574219 C 138.253906 138.675781 141.097656 138.675781 141.097656 140.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 109.617188 159.539062 C 109.617188 161.433594 106.773438 161.433594 106.773438 159.539062 C 106.773438 157.644531 109.617188 157.644531 109.617188 159.539062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 112.816406 145.941406 C 112.816406 147.835938 109.972656 147.835938 109.972656 145.941406 C 109.972656 144.046875 112.816406 144.046875 112.816406 145.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 104.367188 172.5625 C 104.367188 174.460938 101.523438 174.460938 101.523438 172.5625 C 101.523438 170.667969 104.367188 170.667969 104.367188 172.5625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.804688 80.636719 C 155.804688 82.53125 152.964844 82.53125 152.964844 80.636719 C 152.964844 78.742188 155.804688 78.742188 155.804688 80.636719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.058594 125.085938 C 162.058594 126.980469 159.214844 126.980469 159.214844 125.085938 C 159.214844 123.191406 162.058594 123.191406 162.058594 125.085938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 117.800781 160.8125 C 117.800781 162.707031 114.960938 162.707031 114.960938 160.8125 C 114.960938 158.917969 117.800781 158.917969 117.800781 160.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 175.691406 130.128906 C 175.691406 132.023438 172.847656 132.023438 172.847656 130.128906 C 172.847656 128.234375 175.691406 128.234375 175.691406 130.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 139.175781 119.078125 C 139.175781 120.972656 136.335938 120.972656 136.335938 119.078125 C 136.335938 117.183594 139.175781 117.183594 139.175781 119.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 135.292969 123.863281 C 135.292969 125.757812 132.449219 125.757812 132.449219 123.863281 C 132.449219 121.96875 135.292969 121.96875 135.292969 123.863281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 164.699219 138.261719 C 164.699219 140.15625 161.855469 140.15625 161.855469 138.261719 C 161.855469 136.367188 164.699219 136.367188 164.699219 138.261719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.84375 143.742188 C 141.84375 145.640625 139 145.640625 139 143.742188 C 139 141.847656 141.84375 141.847656 141.84375 143.742188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.941406 120.171875 C 131.941406 122.066406 129.097656 122.066406 129.097656 120.171875 C 129.097656 118.277344 131.941406 118.277344 131.941406 120.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 114.964844 132.628906 C 114.964844 134.523438 112.121094 134.523438 112.121094 132.628906 C 112.121094 130.734375 114.964844 130.734375 114.964844 132.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 114.730469 137.367188 C 114.730469 139.261719 111.886719 139.261719 111.886719 137.367188 C 111.886719 135.46875 114.730469 135.46875 114.730469 137.367188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.09375 117.023438 C 144.09375 118.917969 141.25 118.917969 141.25 117.023438 C 141.25 115.128906 144.09375 115.128906 144.09375 117.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.554688 153.339844 C 141.554688 155.234375 138.710938 155.234375 138.710938 153.339844 C 138.710938 151.445312 141.554688 151.445312 141.554688 153.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.515625 149.269531 C 151.515625 151.167969 148.671875 151.167969 148.671875 149.269531 C 148.671875 147.375 151.515625 147.375 151.515625 149.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.597656 100.683594 C 169.597656 102.578125 166.753906 102.578125 166.753906 100.683594 C 166.753906 98.789062 169.597656 98.789062 169.597656 100.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.007812 136.734375 C 115.007812 138.628906 112.167969 138.628906 112.167969 136.734375 C 112.167969 134.839844 115.007812 134.839844 115.007812 136.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.160156 119.378906 C 153.160156 121.273438 150.320312 121.273438 150.320312 119.378906 C 150.320312 117.480469 153.160156 117.480469 153.160156 119.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 124.789062 151.34375 C 124.789062 153.238281 121.945312 153.238281 121.945312 151.34375 C 121.945312 149.445312 124.789062 149.445312 124.789062 151.34375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 148.03125 134.011719 C 148.03125 135.90625 145.191406 135.90625 145.191406 134.011719 C 145.191406 132.113281 148.03125 132.113281 148.03125 134.011719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 164.582031 139.59375 C 164.582031 141.488281 161.738281 141.488281 161.738281 139.59375 C 161.738281 137.699219 164.582031 137.699219 164.582031 139.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.832031 127.484375 C 143.832031 129.378906 140.988281 129.378906 140.988281 127.484375 C 140.988281 125.589844 143.832031 125.589844 143.832031 127.484375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.933594 141.609375 C 149.933594 143.507812 147.09375 143.507812 147.09375 141.609375 C 147.09375 139.714844 149.933594 139.714844 149.933594 141.609375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.816406 92.960938 C 169.816406 94.855469 166.972656 94.855469 166.972656 92.960938 C 166.972656 91.066406 169.816406 91.066406 169.816406 92.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.101562 120.585938 C 157.101562 122.480469 154.257812 122.480469 154.257812 120.585938 C 154.257812 118.6875 157.101562 118.6875 157.101562 120.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.808594 126.476562 C 151.808594 128.375 148.964844 128.375 148.964844 126.476562 C 148.964844 124.582031 151.808594 124.582031 151.808594 126.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.316406 125.09375 C 131.316406 126.988281 128.472656 126.988281 128.472656 125.09375 C 128.472656 123.199219 131.316406 123.199219 131.316406 125.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 122.152344 132.101562 C 122.152344 133.996094 119.308594 133.996094 119.308594 132.101562 C 119.308594 130.207031 122.152344 130.207031 122.152344 132.101562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 119.121094 129.453125 C 119.121094 131.347656 116.28125 131.347656 116.28125 129.453125 C 116.28125 127.558594 119.121094 127.558594 119.121094 129.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 154.179688 92.097656 C 154.179688 93.992188 151.339844 93.992188 151.339844 92.097656 C 151.339844 90.203125 154.179688 90.203125 154.179688 92.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 83.070312 171.3125 C 83.070312 173.210938 80.226562 173.210938 80.226562 171.3125 C 80.226562 169.417969 83.070312 169.417969 83.070312 171.3125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 109.898438 154.332031 C 109.898438 156.226562 107.054688 156.226562 107.054688 154.332031 C 107.054688 152.4375 109.898438 152.4375 109.898438 154.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 103.039062 167.613281 C 103.039062 169.511719 100.199219 169.511719 100.199219 167.613281 C 100.199219 165.71875 103.039062 165.71875 103.039062 167.613281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 113.363281 140.367188 C 113.363281 142.265625 110.523438 142.265625 110.523438 140.367188 C 110.523438 138.472656 113.363281 138.472656 113.363281 140.367188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.402344 115.972656 C 162.402344 117.867188 159.558594 117.867188 159.558594 115.972656 C 159.558594 114.074219 162.402344 114.074219 162.402344 115.972656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.972656 83.78125 C 169.972656 85.679688 167.128906 85.679688 167.128906 83.78125 C 167.128906 81.886719 169.972656 81.886719 169.972656 83.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.664062 140.714844 C 144.664062 142.609375 141.820312 142.609375 141.820312 140.714844 C 141.820312 138.820312 144.664062 138.820312 144.664062 140.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.839844 121.929688 C 151.839844 123.824219 148.996094 123.824219 148.996094 121.929688 C 148.996094 120.035156 151.839844 120.035156 151.839844 121.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.808594 177.320312 C 125.808594 179.214844 122.964844 179.214844 122.964844 177.320312 C 122.964844 175.421875 125.808594 175.421875 125.808594 177.320312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 207.449219 82.671875 C 207.449219 84.566406 204.605469 84.566406 204.605469 82.671875 C 204.605469 80.777344 207.449219 80.777344 207.449219 82.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 135.125 164.308594 C 135.125 166.203125 132.285156 166.203125 132.285156 164.308594 C 132.285156 162.414062 135.125 162.414062 135.125 164.308594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.027344 156.871094 C 126.027344 158.765625 123.183594 158.765625 123.183594 156.871094 C 123.183594 154.972656 126.027344 154.972656 126.027344 156.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 106.359375 133.996094 C 106.359375 135.890625 103.515625 135.890625 103.515625 133.996094 C 103.515625 132.101562 106.359375 132.101562 106.359375 133.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.910156 89.429688 C 155.910156 91.324219 153.066406 91.324219 153.066406 89.429688 C 153.066406 87.535156 155.910156 87.535156 155.910156 89.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 181.488281 143.929688 C 181.488281 145.828125 178.644531 145.828125 178.644531 143.929688 C 178.644531 142.035156 181.488281 142.035156 181.488281 143.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.53125 194.777344 C 97.53125 196.671875 94.6875 196.671875 94.6875 194.777344 C 94.6875 192.882812 97.53125 192.882812 97.53125 194.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.765625 116.785156 C 155.765625 118.679688 152.925781 118.679688 152.925781 116.785156 C 152.925781 114.890625 155.765625 114.890625 155.765625 116.785156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 185.613281 115.953125 C 185.613281 117.847656 182.769531 117.847656 182.769531 115.953125 C 182.769531 114.058594 185.613281 114.058594 185.613281 115.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 180.121094 79.238281 C 180.121094 81.132812 177.28125 81.132812 177.28125 79.238281 C 177.28125 77.34375 180.121094 77.34375 180.121094 79.238281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.445312 137.199219 C 140.445312 139.09375 137.601562 139.09375 137.601562 137.199219 C 137.601562 135.304688 140.445312 135.304688 140.445312 137.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.261719 148.535156 C 142.261719 150.429688 139.421875 150.429688 139.421875 148.535156 C 139.421875 146.640625 142.261719 146.640625 142.261719 148.535156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.953125 147.710938 C 141.953125 149.605469 139.113281 149.605469 139.113281 147.710938 C 139.113281 145.816406 141.953125 145.816406 141.953125 147.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 79.03125 218.355469 C 79.03125 220.25 76.1875 220.25 76.1875 218.355469 C 76.1875 216.460938 79.03125 216.460938 79.03125 218.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 164.894531 85.472656 C 164.894531 87.367188 162.050781 87.367188 162.050781 85.472656 C 162.050781 83.578125 164.894531 83.578125 164.894531 85.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 119.789062 123.316406 C 119.789062 125.210938 116.945312 125.210938 116.945312 123.316406 C 116.945312 121.421875 119.789062 121.421875 119.789062 123.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.558594 133.339844 C 131.558594 135.234375 128.714844 135.234375 128.714844 133.339844 C 128.714844 131.445312 131.558594 131.445312 131.558594 133.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 118.085938 147.363281 C 118.085938 149.257812 115.242188 149.257812 115.242188 147.363281 C 115.242188 145.46875 118.085938 145.46875 118.085938 147.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.101562 158.46875 C 143.101562 160.367188 140.257812 160.367188 140.257812 158.46875 C 140.257812 156.574219 143.101562 156.574219 143.101562 158.46875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.8125 100.128906 C 150.8125 102.027344 147.96875 102.027344 147.96875 100.128906 C 147.96875 98.234375 150.8125 98.234375 150.8125 100.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 193.460938 78.429688 C 193.460938 80.324219 190.621094 80.324219 190.621094 78.429688 C 190.621094 76.535156 193.460938 76.535156 193.460938 78.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 171.511719 106.371094 C 171.511719 108.265625 168.671875 108.265625 168.671875 106.371094 C 168.671875 104.476562 171.511719 104.476562 171.511719 106.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 173.363281 117.492188 C 173.363281 119.386719 170.523438 119.386719 170.523438 117.492188 C 170.523438 115.597656 173.363281 115.597656 173.363281 117.492188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 139.773438 130.835938 C 139.773438 132.730469 136.933594 132.730469 136.933594 130.835938 C 136.933594 128.941406 139.773438 128.941406 139.773438 130.835938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 110.828125 127.441406 C 110.828125 129.335938 107.988281 129.335938 107.988281 127.441406 C 107.988281 125.546875 110.828125 125.546875 110.828125 127.441406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.964844 134.679688 C 141.964844 136.574219 139.121094 136.574219 139.121094 134.679688 C 139.121094 132.78125 141.964844 132.78125 141.964844 134.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 152.882812 73.246094 C 152.882812 75.140625 150.039062 75.140625 150.039062 73.246094 C 150.039062 71.351562 152.882812 71.351562 152.882812 73.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.21875 142.601562 C 158.21875 144.496094 155.375 144.496094 155.375 142.601562 C 155.375 140.703125 158.21875 140.703125 158.21875 142.601562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.207031 106.328125 C 162.207031 108.222656 159.363281 108.222656 159.363281 106.328125 C 159.363281 104.433594 162.207031 104.433594 162.207031 106.328125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 161.839844 159.316406 C 161.839844 161.214844 159 161.214844 159 159.316406 C 159 157.421875 161.839844 157.421875 161.839844 159.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 170.261719 110.628906 C 170.261719 112.523438 167.417969 112.523438 167.417969 110.628906 C 167.417969 108.734375 170.261719 108.734375 170.261719 110.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.613281 182.839844 C 97.613281 184.734375 94.769531 184.734375 94.769531 182.839844 C 94.769531 180.945312 97.613281 180.945312 97.613281 182.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.058594 146.835938 C 151.058594 148.734375 148.214844 148.734375 148.214844 146.835938 C 148.214844 144.941406 151.058594 144.941406 151.058594 146.835938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 159.449219 115.601562 C 159.449219 117.5 156.605469 117.5 156.605469 115.601562 C 156.605469 113.707031 159.449219 113.707031 159.449219 115.601562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.648438 114.773438 C 158.648438 116.671875 155.804688 116.671875 155.804688 114.773438 C 155.804688 112.878906 158.648438 112.878906 158.648438 114.773438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.046875 141.046875 C 143.046875 142.941406 140.203125 142.941406 140.203125 141.046875 C 140.203125 139.148438 143.046875 139.148438 143.046875 141.046875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 130.175781 142.914062 C 130.175781 144.808594 127.332031 144.808594 127.332031 142.914062 C 127.332031 141.015625 130.175781 141.015625 130.175781 142.914062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 119.214844 144.007812 C 119.214844 145.902344 116.375 145.902344 116.375 144.007812 C 116.375 142.113281 119.214844 142.113281 119.214844 144.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.871094 83.269531 C 168.871094 85.164062 166.027344 85.164062 166.027344 83.269531 C 166.027344 81.375 168.871094 81.375 168.871094 83.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 134.027344 118.140625 C 134.027344 120.035156 131.1875 120.035156 131.1875 118.140625 C 131.1875 116.246094 134.027344 116.246094 134.027344 118.140625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 100.542969 171.125 C 100.542969 173.019531 97.703125 173.019531 97.703125 171.125 C 97.703125 169.230469 100.542969 169.230469 100.542969 171.125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.542969 144.457031 C 126.542969 146.351562 123.699219 146.351562 123.699219 144.457031 C 123.699219 142.5625 126.542969 142.5625 126.542969 144.457031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 105.292969 138.453125 C 105.292969 140.347656 102.449219 140.347656 102.449219 138.453125 C 102.449219 136.558594 105.292969 136.558594 105.292969 138.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.058594 148.382812 C 142.058594 150.277344 139.214844 150.277344 139.214844 148.382812 C 139.214844 146.488281 142.058594 146.488281 142.058594 148.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 129.367188 141.433594 C 129.367188 143.332031 126.527344 143.332031 126.527344 141.433594 C 126.527344 139.539062 129.367188 139.539062 129.367188 141.433594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 181.921875 109.121094 C 181.921875 111.015625 179.078125 111.015625 179.078125 109.121094 C 179.078125 107.222656 181.921875 107.222656 181.921875 109.121094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.523438 109.105469 C 168.523438 111 165.683594 111 165.683594 109.105469 C 165.683594 107.210938 168.523438 107.210938 168.523438 109.105469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.679688 145.527344 C 133.679688 147.421875 130.839844 147.421875 130.839844 145.527344 C 130.839844 143.632812 133.679688 143.632812 133.679688 145.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.207031 141.429688 C 142.207031 143.324219 139.367188 143.324219 139.367188 141.429688 C 139.367188 139.535156 142.207031 139.535156 142.207031 141.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 174.484375 96.449219 C 174.484375 98.34375 171.640625 98.34375 171.640625 96.449219 C 171.640625 94.554688 174.484375 94.554688 174.484375 96.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 181.082031 108.589844 C 181.082031 110.488281 178.242188 110.488281 178.242188 108.589844 C 178.242188 106.695312 181.082031 106.695312 181.082031 108.589844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 118.554688 145.636719 C 118.554688 147.53125 115.710938 147.53125 115.710938 145.636719 C 115.710938 143.742188 118.554688 143.742188 118.554688 145.636719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.726562 148.195312 C 125.726562 150.089844 122.882812 150.089844 122.882812 148.195312 C 122.882812 146.300781 125.726562 146.300781 125.726562 148.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 124.53125 134.253906 C 124.53125 136.148438 121.6875 136.148438 121.6875 134.253906 C 121.6875 132.359375 124.53125 132.359375 124.53125 134.253906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.566406 123.746094 C 145.566406 125.640625 142.722656 125.640625 142.722656 123.746094 C 142.722656 121.851562 145.566406 121.851562 145.566406 123.746094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.105469 139.347656 C 145.105469 141.242188 142.265625 141.242188 142.265625 139.347656 C 142.265625 137.453125 145.105469 137.453125 145.105469 139.347656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.386719 138.804688 C 153.386719 140.699219 150.542969 140.699219 150.542969 138.804688 C 150.542969 136.90625 153.386719 136.90625 153.386719 138.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.800781 123.683594 C 145.800781 125.578125 142.960938 125.578125 142.960938 123.683594 C 142.960938 121.789062 145.800781 121.789062 145.800781 123.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.882812 128.6875 C 150.882812 130.582031 148.039062 130.582031 148.039062 128.6875 C 148.039062 126.789062 150.882812 126.789062 150.882812 128.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.578125 102.222656 C 155.578125 104.117188 152.734375 104.117188 152.734375 102.222656 C 152.734375 100.324219 155.578125 100.324219 155.578125 102.222656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.8125 138.128906 C 140.8125 140.023438 137.972656 140.023438 137.972656 138.128906 C 137.972656 136.234375 140.8125 136.234375 140.8125 138.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 163.09375 99.199219 C 163.09375 101.09375 160.253906 101.09375 160.253906 99.199219 C 160.253906 97.304688 163.09375 97.304688 163.09375 99.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.199219 140.09375 C 158.199219 141.988281 155.355469 141.988281 155.355469 140.09375 C 155.355469 138.199219 158.199219 138.199219 158.199219 140.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 137.648438 112.578125 C 137.648438 114.476562 134.804688 114.476562 134.804688 112.578125 C 134.804688 110.683594 137.648438 110.683594 137.648438 112.578125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.597656 145.9375 C 116.597656 147.832031 113.753906 147.832031 113.753906 145.9375 C 113.753906 144.042969 116.597656 144.042969 116.597656 145.9375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 180.832031 112.394531 C 180.832031 114.289062 177.992188 114.289062 177.992188 112.394531 C 177.992188 110.5 180.832031 110.5 180.832031 112.394531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.414062 147.480469 C 126.414062 149.375 123.574219 149.375 123.574219 147.480469 C 123.574219 145.585938 126.414062 145.585938 126.414062 147.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 181.640625 82.003906 C 181.640625 83.898438 178.800781 83.898438 178.800781 82.003906 C 178.800781 80.109375 181.640625 80.109375 181.640625 82.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 127.917969 124.300781 C 127.917969 126.195312 125.074219 126.195312 125.074219 124.300781 C 125.074219 122.402344 127.917969 122.402344 127.917969 124.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.296875 117.09375 C 140.296875 118.988281 137.453125 118.988281 137.453125 117.09375 C 137.453125 115.195312 140.296875 115.195312 140.296875 117.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 129.878906 132.375 C 129.878906 134.273438 127.039062 134.273438 127.039062 132.375 C 127.039062 130.480469 129.878906 130.480469 129.878906 132.375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.289062 100.507812 C 160.289062 102.402344 157.445312 102.402344 157.445312 100.507812 C 157.445312 98.613281 160.289062 98.613281 160.289062 100.507812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.46875 104.78125 C 149.46875 106.675781 146.625 106.675781 146.625 104.78125 C 146.625 102.886719 149.46875 102.886719 149.46875 104.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.703125 129.839844 C 131.703125 131.734375 128.863281 131.734375 128.863281 129.839844 C 128.863281 127.945312 131.703125 127.945312 131.703125 129.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.367188 72.824219 C 169.367188 74.722656 166.523438 74.722656 166.523438 72.824219 C 166.523438 70.929688 169.367188 70.929688 169.367188 72.824219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.78125 107.386719 C 140.78125 109.28125 137.941406 109.28125 137.941406 107.386719 C 137.941406 105.492188 140.78125 105.492188 140.78125 107.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 72.171875 198.8125 C 72.171875 200.710938 69.328125 200.710938 69.328125 198.8125 C 69.328125 196.917969 72.171875 196.917969 72.171875 198.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.738281 159.890625 C 97.738281 161.785156 94.894531 161.785156 94.894531 159.890625 C 94.894531 157.996094 97.738281 157.996094 97.738281 159.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.238281 125.644531 C 126.238281 127.539062 123.394531 127.539062 123.394531 125.644531 C 123.394531 123.75 126.238281 123.75 126.238281 125.644531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.277344 115.828125 C 133.277344 117.722656 130.4375 117.722656 130.4375 115.828125 C 130.4375 113.933594 133.277344 113.933594 133.277344 115.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 99.390625 136.007812 C 99.390625 137.902344 96.546875 137.902344 96.546875 136.007812 C 96.546875 134.113281 99.390625 134.113281 99.390625 136.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 189.160156 92.644531 C 189.160156 94.539062 186.316406 94.539062 186.316406 92.644531 C 186.316406 90.75 189.160156 90.75 189.160156 92.644531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.398438 139.207031 C 142.398438 141.101562 139.558594 141.101562 139.558594 139.207031 C 139.558594 137.3125 142.398438 137.3125 142.398438 139.207031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.792969 124.59375 C 150.792969 126.488281 147.949219 126.488281 147.949219 124.59375 C 147.949219 122.699219 150.792969 122.699219 150.792969 124.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.191406 134.183594 C 153.191406 136.078125 150.351562 136.078125 150.351562 134.183594 C 150.351562 132.285156 153.191406 132.285156 153.191406 134.183594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.128906 101.542969 C 145.128906 103.4375 142.289062 103.4375 142.289062 101.542969 C 142.289062 99.648438 145.128906 99.648438 145.128906 101.542969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 156.183594 123.929688 C 156.183594 125.824219 153.339844 125.824219 153.339844 123.929688 C 153.339844 122.035156 156.183594 122.035156 156.183594 123.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 56.902344 179.15625 C 56.902344 181.050781 54.058594 181.050781 54.058594 179.15625 C 54.058594 177.261719 56.902344 177.261719 56.902344 179.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 154.390625 120.996094 C 154.390625 122.890625 151.550781 122.890625 151.550781 120.996094 C 151.550781 119.101562 154.390625 119.101562 154.390625 120.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 105.625 181.625 C 105.625 183.519531 102.785156 183.519531 102.785156 181.625 C 102.785156 179.730469 105.625 179.730469 105.625 181.625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.519531 139.773438 C 142.519531 141.667969 139.675781 141.667969 139.675781 139.773438 C 139.675781 137.878906 142.519531 137.878906 142.519531 139.773438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 179.414062 116.910156 C 179.414062 118.804688 176.574219 118.804688 176.574219 116.910156 C 176.574219 115.015625 179.414062 115.015625 179.414062 116.910156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.460938 165.480469 C 149.460938 167.375 146.617188 167.375 146.617188 165.480469 C 146.617188 163.585938 149.460938 163.585938 149.460938 165.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 191.757812 77.707031 C 191.757812 79.601562 188.914062 79.601562 188.914062 77.707031 C 188.914062 75.8125 191.757812 75.8125 191.757812 77.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 164.144531 112.351562 C 164.144531 114.246094 161.300781 114.246094 161.300781 112.351562 C 161.300781 110.457031 164.144531 110.457031 164.144531 112.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.269531 123.238281 C 141.269531 125.132812 138.425781 125.132812 138.425781 123.238281 C 138.425781 121.339844 141.269531 121.339844 141.269531 123.238281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.207031 141.039062 C 157.207031 142.933594 154.363281 142.933594 154.363281 141.039062 C 154.363281 139.144531 157.207031 139.144531 157.207031 141.039062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.25 133.078125 C 144.25 134.972656 141.40625 134.972656 141.40625 133.078125 C 141.40625 131.183594 144.25 131.183594 144.25 133.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.125 131.605469 C 162.125 133.5 159.28125 133.5 159.28125 131.605469 C 159.28125 129.710938 162.125 129.710938 162.125 131.605469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.28125 147.613281 C 144.28125 149.507812 141.441406 149.507812 141.441406 147.613281 C 141.441406 145.71875 144.28125 145.71875 144.28125 147.613281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 96.066406 170.472656 C 96.066406 172.367188 93.226562 172.367188 93.226562 170.472656 C 93.226562 168.578125 96.066406 168.578125 96.066406 170.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.023438 115.054688 C 142.023438 116.949219 139.179688 116.949219 139.179688 115.054688 C 139.179688 113.160156 142.023438 113.160156 142.023438 115.054688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 159.164062 126.558594 C 159.164062 128.453125 156.324219 128.453125 156.324219 126.558594 C 156.324219 124.660156 159.164062 124.660156 159.164062 126.558594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 111.03125 168.140625 C 111.03125 170.035156 108.1875 170.035156 108.1875 168.140625 C 108.1875 166.246094 111.03125 166.246094 111.03125 168.140625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.246094 113.820312 C 149.246094 115.714844 146.40625 115.714844 146.40625 113.820312 C 146.40625 111.925781 149.246094 111.925781 149.246094 113.820312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.515625 132.199219 C 140.515625 134.09375 137.671875 134.09375 137.671875 132.199219 C 137.671875 130.304688 140.515625 130.304688 140.515625 132.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.289062 153.789062 C 116.289062 155.683594 113.445312 155.683594 113.445312 153.789062 C 113.445312 151.894531 116.289062 151.894531 116.289062 153.789062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.210938 137.203125 C 131.210938 139.097656 128.367188 139.097656 128.367188 137.203125 C 128.367188 135.308594 131.210938 135.308594 131.210938 137.203125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 118.253906 168.269531 C 118.253906 170.164062 115.414062 170.164062 115.414062 168.269531 C 115.414062 166.375 118.253906 166.375 118.253906 168.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.507812 140.691406 C 126.507812 142.585938 123.664062 142.585938 123.664062 140.691406 C 123.664062 138.792969 126.507812 138.792969 126.507812 140.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 123.015625 131.0625 C 123.015625 132.957031 120.171875 132.957031 120.171875 131.0625 C 120.171875 129.167969 123.015625 129.167969 123.015625 131.0625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 106.84375 143.300781 C 106.84375 145.195312 104.003906 145.195312 104.003906 143.300781 C 104.003906 141.40625 106.84375 141.40625 106.84375 143.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 190.582031 108.523438 C 190.582031 110.417969 187.738281 110.417969 187.738281 108.523438 C 187.738281 106.628906 190.582031 106.628906 190.582031 108.523438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.734375 104.921875 C 169.734375 106.816406 166.890625 106.816406 166.890625 104.921875 C 166.890625 103.027344 169.734375 103.027344 169.734375 104.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.074219 124.546875 C 151.074219 126.441406 148.230469 126.441406 148.230469 124.546875 C 148.230469 122.652344 151.074219 122.652344 151.074219 124.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 152.0625 134.488281 C 152.0625 136.382812 149.21875 136.382812 149.21875 134.488281 C 149.21875 132.59375 152.0625 132.59375 152.0625 134.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 124.609375 182.546875 C 124.609375 184.441406 121.769531 184.441406 121.769531 182.546875 C 121.769531 180.652344 124.609375 180.652344 124.609375 182.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.015625 148.199219 C 133.015625 150.09375 130.171875 150.09375 130.171875 148.199219 C 130.171875 146.304688 133.015625 146.304688 133.015625 148.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.914062 142.730469 C 157.914062 144.628906 155.070312 144.628906 155.070312 142.730469 C 155.070312 140.835938 157.914062 140.835938 157.914062 142.730469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 165.773438 124.3125 C 165.773438 126.210938 162.933594 126.210938 162.933594 124.3125 C 162.933594 122.417969 165.773438 122.417969 165.773438 124.3125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 119.238281 124.019531 C 119.238281 125.914062 116.394531 125.914062 116.394531 124.019531 C 116.394531 122.125 119.238281 122.125 119.238281 124.019531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.136719 88.597656 C 153.136719 90.492188 150.292969 90.492188 150.292969 88.597656 C 150.292969 86.699219 153.136719 86.699219 153.136719 88.597656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 163.09375 112.800781 C 163.09375 114.695312 160.25 114.695312 160.25 112.800781 C 160.25 110.90625 163.09375 110.90625 163.09375 112.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.335938 117.535156 C 172.335938 119.429688 169.496094 119.429688 169.496094 117.535156 C 169.496094 115.640625 172.335938 115.640625 172.335938 117.535156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 107.660156 162.355469 C 107.660156 164.253906 104.816406 164.253906 104.816406 162.355469 C 104.816406 160.460938 107.660156 160.460938 107.660156 162.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 102.09375 176.078125 C 102.09375 177.972656 99.25 177.972656 99.25 176.078125 C 99.25 174.183594 102.09375 174.183594 102.09375 176.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 100.113281 139.476562 C 100.113281 141.371094 97.269531 141.371094 97.269531 139.476562 C 97.269531 137.582031 100.113281 137.582031 100.113281 139.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 117.460938 135.800781 C 117.460938 137.699219 114.621094 137.699219 114.621094 135.800781 C 114.621094 133.90625 117.460938 133.90625 117.460938 135.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.15625 147.664062 C 136.15625 149.558594 133.3125 149.558594 133.3125 147.664062 C 133.3125 145.769531 136.15625 145.769531 136.15625 147.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.28125 105.132812 C 136.28125 107.027344 133.4375 107.027344 133.4375 105.132812 C 133.4375 103.234375 136.28125 103.234375 136.28125 105.132812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 110.351562 148.578125 C 110.351562 150.472656 107.511719 150.472656 107.511719 148.578125 C 107.511719 146.683594 110.351562 146.683594 110.351562 148.578125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 164.371094 149.464844 C 164.371094 151.359375 161.527344 151.359375 161.527344 149.464844 C 161.527344 147.570312 164.371094 147.570312 164.371094 149.464844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 134.199219 161.476562 C 134.199219 163.371094 131.355469 163.371094 131.355469 161.476562 C 131.355469 159.582031 134.199219 159.582031 134.199219 161.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.84375 117.195312 C 136.84375 119.09375 134.003906 119.09375 134.003906 117.195312 C 134.003906 115.300781 136.84375 115.300781 136.84375 117.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.761719 120.675781 C 172.761719 122.570312 169.921875 122.570312 169.921875 120.675781 C 169.921875 118.78125 172.761719 118.78125 172.761719 120.675781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 122.667969 156.4375 C 122.667969 158.335938 119.824219 158.335938 119.824219 156.4375 C 119.824219 154.542969 122.667969 154.542969 122.667969 156.4375 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.136719 118.074219 L 159.222656 117.980469 L 158.308594 117.902344 L 157.394531 117.835938 L 156.480469 117.777344 L 155.566406 117.730469 L 154.652344 117.699219 L 153.738281 117.675781 L 152.824219 117.664062 L 151.910156 117.664062 L 150.996094 117.675781 L 150.082031 117.699219 L 149.167969 117.738281 L 148.253906 117.792969 L 147.339844 117.859375 L 146.425781 117.941406 L 145.511719 118.042969 L 145.28125 118.074219 L 144.597656 118.167969 L 143.683594 118.308594 L 142.769531 118.472656 L 141.855469 118.660156 L 140.941406 118.875 L 140.550781 118.980469 L 140.027344 119.125 L 139.113281 119.40625 L 138.199219 119.722656 L 137.78125 119.882812 L 137.285156 120.085938 L 136.371094 120.492188 L 135.78125 120.789062 L 135.457031 120.960938 L 134.542969 121.492188 L 134.226562 121.691406 L 133.628906 122.101562 L 132.96875 122.59375 L 132.714844 122.800781 L 131.917969 123.5 L 131.800781 123.613281 L 131.035156 124.402344 L 130.886719 124.574219 L 130.28125 125.308594 L 129.972656 125.726562 L 129.632812 126.210938 L 129.078125 127.117188 L 129.058594 127.152344 L 128.601562 128.019531 L 128.1875 128.921875 L 128.144531 129.035156 L 127.835938 129.828125 L 127.539062 130.730469 L 127.289062 131.636719 L 127.230469 131.886719 L 127.082031 132.539062 L 126.914062 133.445312 L 126.785156 134.347656 L 126.6875 135.25 L 126.625 136.15625 L 126.589844 137.058594 L 126.585938 137.964844 L 126.609375 138.867188 L 126.660156 139.773438 L 126.734375 140.675781 L 126.835938 141.582031 L 126.960938 142.484375 L 127.109375 143.386719 L 127.230469 143.996094 L 127.289062 144.292969 L 127.492188 145.195312 L 127.71875 146.101562 L 127.972656 147.003906 L 128.144531 147.550781 L 128.257812 147.910156 L 128.574219 148.8125 L 128.917969 149.714844 L 129.058594 150.058594 L 129.300781 150.621094 L 129.714844 151.523438 L 129.972656 152.042969 L 130.171875 152.429688 L 130.675781 153.332031 L 130.886719 153.6875 L 131.230469 154.238281 L 131.800781 155.085938 L 131.839844 155.140625 L 132.523438 156.042969 L 132.714844 156.285156 L 133.289062 156.949219 L 133.628906 157.324219 L 134.152344 157.851562 L 134.542969 158.230469 L 135.148438 158.757812 L 135.457031 159.019531 L 136.3125 159.660156 L 136.371094 159.703125 L 137.285156 160.296875 L 137.757812 160.566406 L 138.199219 160.808594 L 139.113281 161.246094 L 139.671875 161.46875 L 140.027344 161.613281 L 140.941406 161.914062 L 141.855469 162.15625 L 142.769531 162.34375 L 142.957031 162.375 L 143.683594 162.484375 L 144.597656 162.570312 L 145.511719 162.613281 L 146.425781 162.609375 L 147.339844 162.5625 L 148.253906 162.480469 L 149.039062 162.375 L 149.167969 162.355469 L 150.082031 162.199219 L 150.996094 162.007812 L 151.910156 161.78125 L 152.824219 161.519531 L 152.976562 161.46875 L 153.738281 161.230469 L 154.652344 160.910156 L 155.539062 160.566406 L 155.566406 160.554688 L 156.480469 160.179688 L 157.394531 159.769531 L 157.617188 159.660156 L 158.308594 159.332031 L 159.222656 158.871094 L 159.429688 158.757812 L 160.136719 158.378906 L 161.050781 157.859375 L 161.0625 157.851562 L 161.964844 157.316406 L 162.554688 156.949219 L 162.878906 156.746094 L 163.792969 156.148438 L 163.941406 156.042969 L 164.707031 155.519531 L 165.238281 155.140625 L 165.621094 154.867188 L 166.460938 154.238281 L 166.535156 154.179688 L 167.449219 153.46875 L 167.617188 153.332031 L 168.363281 152.722656 L 168.710938 152.429688 L 169.277344 151.941406 L 169.75 151.523438 L 170.191406 151.128906 L 170.738281 150.621094 L 171.105469 150.273438 L 171.679688 149.714844 L 172.019531 149.378906 L 172.574219 148.8125 L 172.933594 148.433594 L 173.425781 147.910156 L 173.847656 147.4375 L 174.230469 147.003906 L 174.761719 146.378906 L 174.996094 146.101562 L 175.675781 145.246094 L 175.714844 145.195312 L 176.394531 144.292969 L 176.589844 144.019531 L 177.035156 143.386719 L 177.503906 142.675781 L 177.628906 142.484375 L 178.179688 141.582031 L 178.417969 141.160156 L 178.691406 140.675781 L 179.152344 139.773438 L 179.332031 139.386719 L 179.574219 138.867188 L 179.945312 137.964844 L 180.246094 137.125 L 180.269531 137.058594 L 180.542969 136.15625 L 180.765625 135.25 L 180.933594 134.347656 L 181.042969 133.445312 L 181.09375 132.539062 L 181.078125 131.636719 L 180.992188 130.730469 L 180.835938 129.828125 L 180.59375 128.921875 L 180.257812 128.019531 L 180.246094 127.988281 L 179.824219 127.117188 L 179.332031 126.296875 L 179.277344 126.210938 L 178.59375 125.308594 L 178.417969 125.109375 L 177.757812 124.402344 L 177.503906 124.167969 L 176.734375 123.5 L 176.589844 123.386719 L 175.675781 122.726562 L 175.480469 122.59375 L 174.761719 122.160156 L 173.929688 121.691406 L 173.847656 121.648438 L 172.933594 121.207031 L 172.019531 120.804688 L 171.980469 120.789062 L 171.105469 120.449219 L 170.191406 120.128906 L 169.441406 119.882812 L 169.277344 119.832031 L 168.363281 119.570312 L 167.449219 119.332031 L 166.535156 119.113281 L 165.621094 118.914062 L 164.707031 118.738281 L 163.792969 118.578125 L 162.878906 118.429688 L 161.964844 118.300781 L 161.050781 118.179688 L 160.140625 118.074219 L 160.136719 118.074219 "/> +<g clip-path="url(#clip17)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 238.265625 L 231.382812 238.265625 L 231.382812 40.371094 L 31.296875 40.371094 Z M 31.296875 238.265625 "/> +</g> +<g clip-path="url(#clip18)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 204.738281 L 436.953125 204.738281 "/> +</g> +<g clip-path="url(#clip19)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 155.675781 L 436.953125 155.675781 "/> +</g> +<g clip-path="url(#clip20)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 106.609375 L 436.953125 106.609375 "/> +</g> +<g clip-path="url(#clip21)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 57.546875 L 436.953125 57.546875 "/> +</g> +<g clip-path="url(#clip22)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.765625 238.265625 L 270.765625 40.371094 "/> +</g> +<g clip-path="url(#clip23)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.375 238.265625 L 320.375 40.371094 "/> +</g> +<g clip-path="url(#clip24)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.980469 238.265625 L 369.980469 40.371094 "/> +</g> +<g clip-path="url(#clip25)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.589844 238.265625 L 419.589844 40.371094 "/> +</g> +<g clip-path="url(#clip26)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 229.273438 L 436.953125 229.273438 "/> +</g> +<g clip-path="url(#clip27)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 180.207031 L 436.953125 180.207031 "/> +</g> +<g clip-path="url(#clip28)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 131.140625 L 436.953125 131.140625 "/> +</g> +<g clip-path="url(#clip29)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 82.078125 L 436.953125 82.078125 "/> +</g> +<g clip-path="url(#clip30)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.960938 238.265625 L 245.960938 40.371094 "/> +</g> +<g clip-path="url(#clip31)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.570312 238.265625 L 295.570312 40.371094 "/> +</g> +<g clip-path="url(#clip32)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.175781 238.265625 L 345.175781 40.371094 "/> +</g> +<g clip-path="url(#clip33)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.785156 238.265625 L 394.785156 40.371094 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 401.03125 103.976562 C 401.03125 105.871094 398.191406 105.871094 398.191406 103.976562 C 398.191406 102.082031 401.03125 102.082031 401.03125 103.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.871094 147.125 C 336.871094 149.019531 334.03125 149.019531 334.03125 147.125 C 334.03125 145.230469 336.871094 145.230469 336.871094 147.125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.871094 108.269531 C 330.871094 110.164062 328.03125 110.164062 328.03125 108.269531 C 328.03125 106.371094 330.871094 106.371094 330.871094 108.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.140625 125.082031 C 351.140625 126.980469 348.296875 126.980469 348.296875 125.082031 C 348.296875 123.1875 351.140625 123.1875 351.140625 125.082031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.980469 121.566406 C 347.980469 123.460938 345.136719 123.460938 345.136719 121.566406 C 345.136719 119.671875 347.980469 119.671875 347.980469 121.566406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.933594 129.8125 C 358.933594 131.707031 356.089844 131.707031 356.089844 129.8125 C 356.089844 127.917969 358.933594 127.917969 358.933594 129.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.21875 112.917969 C 362.21875 114.8125 359.375 114.8125 359.375 112.917969 C 359.375 111.023438 362.21875 111.023438 362.21875 112.917969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 398.5625 90.554688 C 398.5625 92.449219 395.71875 92.449219 395.71875 90.554688 C 395.71875 88.660156 398.5625 88.660156 398.5625 90.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 334.476562 148.796875 C 334.476562 150.691406 331.636719 150.691406 331.636719 148.796875 C 331.636719 146.902344 334.476562 146.902344 334.476562 148.796875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 370.550781 92.574219 C 370.550781 94.46875 367.707031 94.46875 367.707031 92.574219 C 367.707031 90.679688 370.550781 90.679688 370.550781 92.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.476562 101.820312 C 363.476562 103.714844 360.632812 103.714844 360.632812 101.820312 C 360.632812 99.925781 363.476562 99.925781 363.476562 101.820312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 316.285156 141.730469 C 316.285156 143.625 313.441406 143.625 313.441406 141.730469 C 313.441406 139.835938 316.285156 139.835938 316.285156 141.730469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 329.46875 127.230469 C 329.46875 129.125 326.625 129.125 326.625 127.230469 C 326.625 125.332031 329.46875 125.332031 329.46875 127.230469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.484375 151.53125 C 327.484375 153.425781 324.640625 153.425781 324.640625 151.53125 C 324.640625 149.632812 327.484375 149.632812 327.484375 151.53125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 382.824219 124.71875 C 382.824219 126.617188 379.984375 126.617188 379.984375 124.71875 C 379.984375 122.824219 382.824219 122.824219 382.824219 124.71875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 348.730469 131.300781 C 348.730469 133.195312 345.890625 133.195312 345.890625 131.300781 C 345.890625 129.40625 348.730469 129.40625 348.730469 131.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 350.078125 120.78125 C 350.078125 122.675781 347.234375 122.675781 347.234375 120.78125 C 347.234375 118.886719 350.078125 118.886719 350.078125 120.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.714844 117.976562 C 352.714844 119.875 349.871094 119.875 349.871094 117.976562 C 349.871094 116.082031 352.714844 116.082031 352.714844 117.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.15625 134.742188 C 352.15625 136.636719 349.3125 136.636719 349.3125 134.742188 C 349.3125 132.847656 352.15625 132.847656 352.15625 134.742188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.53125 148.679688 C 341.53125 150.574219 338.691406 150.574219 338.691406 148.679688 C 338.691406 146.78125 341.53125 146.78125 341.53125 148.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.277344 110.480469 C 375.277344 112.378906 372.433594 112.378906 372.433594 110.480469 C 372.433594 108.585938 375.277344 108.585938 375.277344 110.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 302.96875 201.289062 C 302.96875 203.183594 300.125 203.183594 300.125 201.289062 C 300.125 199.394531 302.96875 199.394531 302.96875 201.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.394531 125.9375 C 339.394531 127.832031 336.554688 127.832031 336.554688 125.9375 C 336.554688 124.042969 339.394531 124.042969 339.394531 125.9375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 343.871094 135.417969 C 343.871094 137.3125 341.027344 137.3125 341.027344 135.417969 C 341.027344 133.523438 343.871094 133.523438 343.871094 135.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 306.207031 152.292969 C 306.207031 154.191406 303.367188 154.191406 303.367188 152.292969 C 303.367188 150.398438 306.207031 150.398438 306.207031 152.292969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.078125 139.847656 C 349.078125 141.742188 346.238281 141.742188 346.238281 139.847656 C 346.238281 137.953125 349.078125 137.953125 349.078125 139.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.496094 87.128906 C 345.496094 89.023438 342.652344 89.023438 342.652344 87.128906 C 342.652344 85.234375 345.496094 85.234375 345.496094 87.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 370.664062 129.480469 C 370.664062 131.375 367.820312 131.375 367.820312 129.480469 C 367.820312 127.585938 370.664062 127.585938 370.664062 129.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.75 120.117188 C 333.75 122.011719 330.910156 122.011719 330.910156 120.117188 C 330.910156 118.222656 333.75 118.222656 333.75 120.117188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 312.015625 134.386719 C 312.015625 136.28125 309.175781 136.28125 309.175781 134.386719 C 309.175781 132.492188 312.015625 132.492188 312.015625 134.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 354.601562 114.929688 C 354.601562 116.828125 351.757812 116.828125 351.757812 114.929688 C 351.757812 113.035156 354.601562 113.035156 354.601562 114.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.25 132.527344 C 357.25 134.421875 354.410156 134.421875 354.410156 132.527344 C 354.410156 130.628906 357.25 130.628906 357.25 132.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.050781 137.027344 C 364.050781 138.921875 361.210938 138.921875 361.210938 137.027344 C 361.210938 135.128906 364.050781 135.128906 364.050781 137.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.425781 169.433594 C 330.425781 171.332031 327.582031 171.332031 327.582031 169.433594 C 327.582031 167.539062 330.425781 167.539062 330.425781 169.433594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.132812 146.480469 C 346.132812 148.375 343.289062 148.375 343.289062 146.480469 C 343.289062 144.585938 346.132812 144.585938 346.132812 146.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.671875 110.332031 C 345.671875 112.226562 342.828125 112.226562 342.828125 110.332031 C 342.828125 108.4375 345.671875 108.4375 345.671875 110.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.710938 155.179688 C 327.710938 157.074219 324.871094 157.074219 324.871094 155.179688 C 324.871094 153.285156 327.710938 153.285156 327.710938 155.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 323.820312 159.582031 C 323.820312 161.476562 320.976562 161.476562 320.976562 159.582031 C 320.976562 157.6875 323.820312 157.6875 323.820312 159.582031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 320.519531 168.210938 C 320.519531 170.105469 317.675781 170.105469 317.675781 168.210938 C 317.675781 166.316406 320.519531 166.316406 320.519531 168.210938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.695312 164.996094 C 321.695312 166.890625 318.855469 166.890625 318.855469 164.996094 C 318.855469 163.101562 321.695312 163.101562 321.695312 164.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.5 133.375 C 362.5 135.269531 359.65625 135.269531 359.65625 133.375 C 359.65625 131.480469 362.5 131.480469 362.5 133.375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.304688 128.585938 C 327.304688 130.480469 324.460938 130.480469 324.460938 128.585938 C 324.460938 126.691406 327.304688 126.691406 327.304688 128.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.078125 104.972656 C 321.078125 106.867188 318.238281 106.867188 318.238281 104.972656 C 318.238281 103.078125 321.078125 103.078125 321.078125 104.972656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 320.152344 139.351562 C 320.152344 141.246094 317.308594 141.246094 317.308594 139.351562 C 317.308594 137.457031 320.152344 137.457031 320.152344 139.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 395.875 87.300781 C 395.875 89.195312 393.03125 89.195312 393.03125 87.300781 C 393.03125 85.40625 395.875 85.40625 395.875 87.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 379.054688 134.363281 C 379.054688 136.261719 376.214844 136.261719 376.214844 134.363281 C 376.214844 132.46875 379.054688 132.46875 379.054688 134.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.777344 147.191406 C 373.777344 149.085938 370.933594 149.085938 370.933594 147.191406 C 370.933594 145.296875 373.777344 145.296875 373.777344 147.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 359.585938 103.921875 C 359.585938 105.816406 356.746094 105.816406 356.746094 103.921875 C 356.746094 102.023438 359.585938 102.023438 359.585938 103.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 337.429688 153.652344 C 337.429688 155.546875 334.585938 155.546875 334.585938 153.652344 C 334.585938 151.757812 337.429688 151.757812 337.429688 153.652344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 353.988281 163.28125 C 353.988281 165.175781 351.144531 165.175781 351.144531 163.28125 C 351.144531 161.382812 353.988281 161.382812 353.988281 163.28125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 340.617188 124.390625 C 340.617188 126.285156 337.773438 126.285156 337.773438 124.390625 C 337.773438 122.496094 340.617188 122.496094 340.617188 124.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 371.785156 135.488281 C 371.785156 137.382812 368.941406 137.382812 368.941406 135.488281 C 368.941406 133.59375 371.785156 133.59375 371.785156 135.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.617188 111.589844 C 362.617188 113.484375 359.773438 113.484375 359.773438 111.589844 C 359.773438 109.695312 362.617188 109.695312 362.617188 111.589844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.957031 149.925781 C 327.957031 151.820312 325.113281 151.820312 325.113281 149.925781 C 325.113281 148.03125 327.957031 148.03125 327.957031 149.925781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 323.386719 141.8125 C 323.386719 143.707031 320.542969 143.707031 320.542969 141.8125 C 320.542969 139.917969 323.386719 139.917969 323.386719 141.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.386719 140.722656 C 365.386719 142.617188 362.542969 142.617188 362.542969 140.722656 C 362.542969 138.828125 365.386719 138.828125 365.386719 140.722656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.421875 115.996094 C 352.421875 117.894531 349.578125 117.894531 349.578125 115.996094 C 349.578125 114.101562 352.421875 114.101562 352.421875 115.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.054688 126.515625 C 351.054688 128.410156 348.210938 128.410156 348.210938 126.515625 C 348.210938 124.621094 351.054688 124.621094 351.054688 126.515625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.164062 96.871094 C 355.164062 98.765625 352.320312 98.765625 352.320312 96.871094 C 352.320312 94.976562 355.164062 94.976562 355.164062 96.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.839844 135.070312 C 341.839844 136.964844 339 136.964844 339 135.070312 C 339 133.175781 341.839844 133.175781 341.839844 135.070312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 360.078125 146.910156 C 360.078125 148.804688 357.238281 148.804688 357.238281 146.910156 C 357.238281 145.015625 360.078125 145.015625 360.078125 146.910156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 379.167969 137.207031 C 379.167969 139.101562 376.328125 139.101562 376.328125 137.207031 C 376.328125 135.3125 379.167969 135.3125 379.167969 137.207031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.558594 122.066406 C 362.558594 123.960938 359.714844 123.960938 359.714844 122.066406 C 359.714844 120.171875 362.558594 120.171875 362.558594 122.066406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.925781 114.390625 C 365.925781 116.289062 363.082031 116.289062 363.082031 114.390625 C 363.082031 112.496094 365.925781 112.496094 365.925781 114.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.4375 125.023438 C 321.4375 126.917969 318.59375 126.917969 318.59375 125.023438 C 318.59375 123.128906 321.4375 123.128906 321.4375 125.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.34375 141.15625 C 336.34375 143.050781 333.5 143.050781 333.5 141.15625 C 333.5 139.261719 336.34375 139.261719 336.34375 141.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.445312 140.933594 C 347.445312 142.828125 344.601562 142.828125 344.601562 140.933594 C 344.601562 139.039062 347.445312 139.039062 347.445312 140.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 303.289062 156.152344 C 303.289062 158.046875 300.445312 158.046875 300.445312 156.152344 C 300.445312 154.257812 303.289062 154.257812 303.289062 156.152344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 335.695312 131.871094 C 335.695312 133.769531 332.851562 133.769531 332.851562 131.871094 C 332.851562 129.976562 335.695312 129.976562 335.695312 131.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.238281 145.546875 C 331.238281 147.441406 328.394531 147.441406 328.394531 145.546875 C 328.394531 143.652344 331.238281 143.652344 331.238281 145.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 342.007812 119.386719 C 342.007812 121.28125 339.164062 121.28125 339.164062 119.386719 C 339.164062 117.492188 342.007812 117.492188 342.007812 119.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 342.90625 163.976562 C 342.90625 165.871094 340.066406 165.871094 340.066406 163.976562 C 340.066406 162.082031 342.90625 162.082031 342.90625 163.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.664062 140.574219 C 346.664062 142.46875 343.820312 142.46875 343.820312 140.574219 C 343.820312 138.675781 346.664062 138.675781 346.664062 140.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 315.183594 159.539062 C 315.183594 161.433594 312.339844 161.433594 312.339844 159.539062 C 312.339844 157.644531 315.183594 157.644531 315.183594 159.539062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 318.382812 145.941406 C 318.382812 147.835938 315.539062 147.835938 315.539062 145.941406 C 315.539062 144.046875 318.382812 144.046875 318.382812 145.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 309.933594 172.5625 C 309.933594 174.460938 307.089844 174.460938 307.089844 172.5625 C 307.089844 170.667969 309.933594 170.667969 309.933594 172.5625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.375 80.636719 C 361.375 82.53125 358.53125 82.53125 358.53125 80.636719 C 358.53125 78.742188 361.375 78.742188 361.375 80.636719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.625 125.085938 C 367.625 126.980469 364.785156 126.980469 364.785156 125.085938 C 364.785156 123.191406 367.625 123.191406 367.625 125.085938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 323.371094 160.8125 C 323.371094 162.707031 320.527344 162.707031 320.527344 160.8125 C 320.527344 158.917969 323.371094 158.917969 323.371094 160.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 381.257812 130.128906 C 381.257812 132.023438 378.414062 132.023438 378.414062 130.128906 C 378.414062 128.234375 381.257812 128.234375 381.257812 130.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 344.746094 119.078125 C 344.746094 120.972656 341.902344 120.972656 341.902344 119.078125 C 341.902344 117.183594 344.746094 117.183594 344.746094 119.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 340.859375 123.863281 C 340.859375 125.757812 338.019531 125.757812 338.019531 123.863281 C 338.019531 121.96875 340.859375 121.96875 340.859375 123.863281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 370.265625 138.261719 C 370.265625 140.15625 367.421875 140.15625 367.421875 138.261719 C 367.421875 136.367188 370.265625 136.367188 370.265625 138.261719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.410156 143.742188 C 347.410156 145.640625 344.566406 145.640625 344.566406 143.742188 C 344.566406 141.847656 347.410156 141.847656 347.410156 143.742188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 337.507812 120.171875 C 337.507812 122.066406 334.667969 122.066406 334.667969 120.171875 C 334.667969 118.277344 337.507812 118.277344 337.507812 120.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 320.53125 132.628906 C 320.53125 134.523438 317.6875 134.523438 317.6875 132.628906 C 317.6875 130.734375 320.53125 130.734375 320.53125 132.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 320.296875 137.367188 C 320.296875 139.261719 317.453125 139.261719 317.453125 137.367188 C 317.453125 135.46875 320.296875 135.46875 320.296875 137.367188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.660156 117.023438 C 349.660156 118.917969 346.816406 118.917969 346.816406 117.023438 C 346.816406 115.128906 349.660156 115.128906 349.660156 117.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.121094 153.339844 C 347.121094 155.234375 344.277344 155.234375 344.277344 153.339844 C 344.277344 151.445312 347.121094 151.445312 347.121094 153.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.082031 149.269531 C 357.082031 151.167969 354.238281 151.167969 354.238281 149.269531 C 354.238281 147.375 357.082031 147.375 357.082031 149.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.164062 100.683594 C 375.164062 102.578125 372.320312 102.578125 372.320312 100.683594 C 372.320312 98.789062 375.164062 98.789062 375.164062 100.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 320.574219 136.734375 C 320.574219 138.628906 317.734375 138.628906 317.734375 136.734375 C 317.734375 134.839844 320.574219 134.839844 320.574219 136.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.730469 119.378906 C 358.730469 121.273438 355.886719 121.273438 355.886719 119.378906 C 355.886719 117.480469 358.730469 117.480469 358.730469 119.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.355469 151.34375 C 330.355469 153.238281 327.511719 153.238281 327.511719 151.34375 C 327.511719 149.445312 330.355469 149.445312 330.355469 151.34375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 353.601562 134.011719 C 353.601562 135.90625 350.757812 135.90625 350.757812 134.011719 C 350.757812 132.113281 353.601562 132.113281 353.601562 134.011719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 370.148438 139.59375 C 370.148438 141.488281 367.308594 141.488281 367.308594 139.59375 C 367.308594 137.699219 370.148438 137.699219 370.148438 139.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.398438 127.484375 C 349.398438 129.378906 346.554688 129.378906 346.554688 127.484375 C 346.554688 125.589844 349.398438 125.589844 349.398438 127.484375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.503906 141.609375 C 355.503906 143.507812 352.660156 143.507812 352.660156 141.609375 C 352.660156 139.714844 355.503906 139.714844 355.503906 141.609375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.382812 92.960938 C 375.382812 94.855469 372.539062 94.855469 372.539062 92.960938 C 372.539062 91.066406 375.382812 91.066406 375.382812 92.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.667969 120.585938 C 362.667969 122.480469 359.824219 122.480469 359.824219 120.585938 C 359.824219 118.6875 362.667969 118.6875 362.667969 120.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.375 126.476562 C 357.375 128.375 354.53125 128.375 354.53125 126.476562 C 354.53125 124.582031 357.375 124.582031 357.375 126.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.882812 125.09375 C 336.882812 126.988281 334.039062 126.988281 334.039062 125.09375 C 334.039062 123.199219 336.882812 123.199219 336.882812 125.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.71875 132.101562 C 327.71875 133.996094 324.875 133.996094 324.875 132.101562 C 324.875 130.207031 327.71875 130.207031 327.71875 132.101562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 324.691406 129.453125 C 324.691406 131.347656 321.847656 131.347656 321.847656 129.453125 C 321.847656 127.558594 324.691406 127.558594 324.691406 129.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 359.75 92.097656 C 359.75 93.992188 356.90625 93.992188 356.90625 92.097656 C 356.90625 90.203125 359.75 90.203125 359.75 92.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 288.636719 171.3125 C 288.636719 173.210938 285.792969 173.210938 285.792969 171.3125 C 285.792969 169.417969 288.636719 169.417969 288.636719 171.3125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 315.464844 154.332031 C 315.464844 156.226562 312.621094 156.226562 312.621094 154.332031 C 312.621094 152.4375 315.464844 152.4375 315.464844 154.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 308.605469 167.613281 C 308.605469 169.511719 305.765625 169.511719 305.765625 167.613281 C 305.765625 165.71875 308.605469 165.71875 308.605469 167.613281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 318.933594 140.367188 C 318.933594 142.265625 316.089844 142.265625 316.089844 140.367188 C 316.089844 138.472656 318.933594 138.472656 318.933594 140.367188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.96875 115.972656 C 367.96875 117.867188 365.125 117.867188 365.125 115.972656 C 365.125 114.074219 367.96875 114.074219 367.96875 115.972656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.539062 83.78125 C 375.539062 85.679688 372.695312 85.679688 372.695312 83.78125 C 372.695312 81.886719 375.539062 81.886719 375.539062 83.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 350.230469 140.714844 C 350.230469 142.609375 347.386719 142.609375 347.386719 140.714844 C 347.386719 138.820312 350.230469 138.820312 350.230469 140.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.40625 121.929688 C 357.40625 123.824219 354.5625 123.824219 354.5625 121.929688 C 354.5625 120.035156 357.40625 120.035156 357.40625 121.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.375 177.320312 C 331.375 179.214844 328.535156 179.214844 328.535156 177.320312 C 328.535156 175.421875 331.375 175.421875 331.375 177.320312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 413.015625 82.671875 C 413.015625 84.566406 410.171875 84.566406 410.171875 82.671875 C 410.171875 80.777344 413.015625 80.777344 413.015625 82.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 340.691406 164.308594 C 340.691406 166.203125 337.851562 166.203125 337.851562 164.308594 C 337.851562 162.414062 340.691406 162.414062 340.691406 164.308594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.59375 156.871094 C 331.59375 158.765625 328.75 158.765625 328.75 156.871094 C 328.75 154.972656 331.59375 154.972656 331.59375 156.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 311.925781 133.996094 C 311.925781 135.890625 309.082031 135.890625 309.082031 133.996094 C 309.082031 132.101562 311.925781 132.101562 311.925781 133.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.476562 89.429688 C 361.476562 91.324219 358.632812 91.324219 358.632812 89.429688 C 358.632812 87.535156 361.476562 87.535156 361.476562 89.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 387.054688 143.929688 C 387.054688 145.828125 384.210938 145.828125 384.210938 143.929688 C 384.210938 142.035156 387.054688 142.035156 387.054688 143.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 303.097656 194.777344 C 303.097656 196.671875 300.257812 196.671875 300.257812 194.777344 C 300.257812 192.882812 303.097656 192.882812 303.097656 194.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.335938 116.785156 C 361.335938 118.679688 358.492188 118.679688 358.492188 116.785156 C 358.492188 114.890625 361.335938 114.890625 361.335938 116.785156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 391.179688 115.953125 C 391.179688 117.847656 388.339844 117.847656 388.339844 115.953125 C 388.339844 114.058594 391.179688 114.058594 391.179688 115.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 385.691406 79.238281 C 385.691406 81.132812 382.847656 81.132812 382.847656 79.238281 C 382.847656 77.34375 385.691406 77.34375 385.691406 79.238281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.011719 137.199219 C 346.011719 139.09375 343.167969 139.09375 343.167969 137.199219 C 343.167969 135.304688 346.011719 135.304688 346.011719 137.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.832031 148.535156 C 347.832031 150.429688 344.988281 150.429688 344.988281 148.535156 C 344.988281 146.640625 347.832031 146.640625 347.832031 148.535156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.523438 147.710938 C 347.523438 149.605469 344.679688 149.605469 344.679688 147.710938 C 344.679688 145.816406 347.523438 145.816406 347.523438 147.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 284.597656 218.355469 C 284.597656 220.25 281.753906 220.25 281.753906 218.355469 C 281.753906 216.460938 284.597656 216.460938 284.597656 218.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 370.460938 85.472656 C 370.460938 87.367188 367.621094 87.367188 367.621094 85.472656 C 367.621094 83.578125 370.460938 83.578125 370.460938 85.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 325.355469 123.316406 C 325.355469 125.210938 322.515625 125.210938 322.515625 123.316406 C 322.515625 121.421875 325.355469 121.421875 325.355469 123.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 337.125 133.339844 C 337.125 135.234375 334.28125 135.234375 334.28125 133.339844 C 334.28125 131.445312 337.125 131.445312 337.125 133.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 323.652344 147.363281 C 323.652344 149.257812 320.808594 149.257812 320.808594 147.363281 C 320.808594 145.46875 323.652344 145.46875 323.652344 147.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 348.667969 158.46875 C 348.667969 160.367188 345.828125 160.367188 345.828125 158.46875 C 345.828125 156.574219 348.667969 156.574219 348.667969 158.46875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.378906 100.128906 C 356.378906 102.027344 353.539062 102.027344 353.539062 100.128906 C 353.539062 98.234375 356.378906 98.234375 356.378906 100.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 399.027344 78.429688 C 399.027344 80.324219 396.1875 80.324219 396.1875 78.429688 C 396.1875 76.535156 399.027344 76.535156 399.027344 78.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 377.078125 106.371094 C 377.078125 108.265625 374.238281 108.265625 374.238281 106.371094 C 374.238281 104.476562 377.078125 104.476562 377.078125 106.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.929688 117.492188 C 378.929688 119.386719 376.089844 119.386719 376.089844 117.492188 C 376.089844 115.597656 378.929688 115.597656 378.929688 117.492188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.339844 130.835938 C 345.339844 132.730469 342.5 132.730469 342.5 130.835938 C 342.5 128.941406 345.339844 128.941406 345.339844 130.835938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 316.394531 127.441406 C 316.394531 129.335938 313.554688 129.335938 313.554688 127.441406 C 313.554688 125.546875 316.394531 125.546875 316.394531 127.441406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.53125 134.679688 C 347.53125 136.574219 344.6875 136.574219 344.6875 134.679688 C 344.6875 132.78125 347.53125 132.78125 347.53125 134.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.449219 73.246094 C 358.449219 75.140625 355.605469 75.140625 355.605469 73.246094 C 355.605469 71.351562 358.449219 71.351562 358.449219 73.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.785156 142.601562 C 363.785156 144.496094 360.941406 144.496094 360.941406 142.601562 C 360.941406 140.703125 363.785156 140.703125 363.785156 142.601562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.773438 106.328125 C 367.773438 108.222656 364.929688 108.222656 364.929688 106.328125 C 364.929688 104.433594 367.773438 104.433594 367.773438 106.328125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.410156 159.316406 C 367.410156 161.214844 364.566406 161.214844 364.566406 159.316406 C 364.566406 157.421875 367.410156 157.421875 367.410156 159.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.828125 110.628906 C 375.828125 112.523438 372.988281 112.523438 372.988281 110.628906 C 372.988281 108.734375 375.828125 108.734375 375.828125 110.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 303.179688 182.839844 C 303.179688 184.734375 300.339844 184.734375 300.339844 182.839844 C 300.339844 180.945312 303.179688 180.945312 303.179688 182.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.625 146.835938 C 356.625 148.734375 353.78125 148.734375 353.78125 146.835938 C 353.78125 144.941406 356.625 144.941406 356.625 146.835938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.015625 115.601562 C 365.015625 117.5 362.175781 117.5 362.175781 115.601562 C 362.175781 113.707031 365.015625 113.707031 365.015625 115.601562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.214844 114.773438 C 364.214844 116.671875 361.371094 116.671875 361.371094 114.773438 C 361.371094 112.878906 364.214844 112.878906 364.214844 114.773438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 348.613281 141.046875 C 348.613281 142.941406 345.769531 142.941406 345.769531 141.046875 C 345.769531 139.148438 348.613281 139.148438 348.613281 141.046875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 335.742188 142.914062 C 335.742188 144.808594 332.898438 144.808594 332.898438 142.914062 C 332.898438 141.015625 335.742188 141.015625 335.742188 142.914062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 324.785156 144.007812 C 324.785156 145.902344 321.941406 145.902344 321.941406 144.007812 C 321.941406 142.113281 324.785156 142.113281 324.785156 144.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.4375 83.269531 C 374.4375 85.164062 371.59375 85.164062 371.59375 83.269531 C 371.59375 81.375 374.4375 81.375 374.4375 83.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.597656 118.140625 C 339.597656 120.035156 336.753906 120.035156 336.753906 118.140625 C 336.753906 116.246094 339.597656 116.246094 339.597656 118.140625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 306.113281 171.125 C 306.113281 173.019531 303.269531 173.019531 303.269531 171.125 C 303.269531 169.230469 306.113281 169.230469 306.113281 171.125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 332.109375 144.457031 C 332.109375 146.351562 329.265625 146.351562 329.265625 144.457031 C 329.265625 142.5625 332.109375 142.5625 332.109375 144.457031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 310.859375 138.453125 C 310.859375 140.347656 308.015625 140.347656 308.015625 138.453125 C 308.015625 136.558594 310.859375 136.558594 310.859375 138.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.625 148.382812 C 347.625 150.277344 344.78125 150.277344 344.78125 148.382812 C 344.78125 146.488281 347.625 146.488281 347.625 148.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 334.9375 141.433594 C 334.9375 143.332031 332.09375 143.332031 332.09375 141.433594 C 332.09375 139.539062 334.9375 139.539062 334.9375 141.433594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 387.488281 109.121094 C 387.488281 111.015625 384.648438 111.015625 384.648438 109.121094 C 384.648438 107.222656 387.488281 107.222656 387.488281 109.121094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.09375 109.105469 C 374.09375 111 371.25 111 371.25 109.105469 C 371.25 107.210938 374.09375 107.210938 374.09375 109.105469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.25 145.527344 C 339.25 147.421875 336.40625 147.421875 336.40625 145.527344 C 336.40625 143.632812 339.25 143.632812 339.25 145.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.777344 141.429688 C 347.777344 143.324219 344.933594 143.324219 344.933594 141.429688 C 344.933594 139.535156 347.777344 139.535156 347.777344 141.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 380.050781 96.449219 C 380.050781 98.34375 377.210938 98.34375 377.210938 96.449219 C 377.210938 94.554688 380.050781 94.554688 380.050781 96.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 386.648438 108.589844 C 386.648438 110.488281 383.808594 110.488281 383.808594 108.589844 C 383.808594 106.695312 386.648438 106.695312 386.648438 108.589844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 324.121094 145.636719 C 324.121094 147.53125 321.277344 147.53125 321.277344 145.636719 C 321.277344 143.742188 324.121094 143.742188 324.121094 145.636719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.292969 148.195312 C 331.292969 150.089844 328.453125 150.089844 328.453125 148.195312 C 328.453125 146.300781 331.292969 146.300781 331.292969 148.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.097656 134.253906 C 330.097656 136.148438 327.253906 136.148438 327.253906 134.253906 C 327.253906 132.359375 330.097656 132.359375 330.097656 134.253906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.132812 123.746094 C 351.132812 125.640625 348.292969 125.640625 348.292969 123.746094 C 348.292969 121.851562 351.132812 121.851562 351.132812 123.746094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 350.675781 139.347656 C 350.675781 141.242188 347.832031 141.242188 347.832031 139.347656 C 347.832031 137.453125 350.675781 137.453125 350.675781 139.347656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.953125 138.804688 C 358.953125 140.699219 356.109375 140.699219 356.109375 138.804688 C 356.109375 136.90625 358.953125 136.90625 358.953125 138.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.371094 123.683594 C 351.371094 125.578125 348.527344 125.578125 348.527344 123.683594 C 348.527344 121.789062 351.371094 121.789062 351.371094 123.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.449219 128.6875 C 356.449219 130.582031 353.605469 130.582031 353.605469 128.6875 C 353.605469 126.789062 356.449219 126.789062 356.449219 128.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.144531 102.222656 C 361.144531 104.117188 358.300781 104.117188 358.300781 102.222656 C 358.300781 100.324219 361.144531 100.324219 361.144531 102.222656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.382812 138.128906 C 346.382812 140.023438 343.539062 140.023438 343.539062 138.128906 C 343.539062 136.234375 346.382812 136.234375 346.382812 138.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 368.664062 99.199219 C 368.664062 101.09375 365.820312 101.09375 365.820312 99.199219 C 365.820312 97.304688 368.664062 97.304688 368.664062 99.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.765625 140.09375 C 363.765625 141.988281 360.925781 141.988281 360.925781 140.09375 C 360.925781 138.199219 363.765625 138.199219 363.765625 140.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 343.214844 112.578125 C 343.214844 114.476562 340.371094 114.476562 340.371094 112.578125 C 340.371094 110.683594 343.214844 110.683594 343.214844 112.578125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 322.164062 145.9375 C 322.164062 147.832031 319.320312 147.832031 319.320312 145.9375 C 319.320312 144.042969 322.164062 144.042969 322.164062 145.9375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 386.402344 112.394531 C 386.402344 114.289062 383.558594 114.289062 383.558594 112.394531 C 383.558594 110.5 386.402344 110.5 386.402344 112.394531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.984375 147.480469 C 331.984375 149.375 329.140625 149.375 329.140625 147.480469 C 329.140625 145.585938 331.984375 145.585938 331.984375 147.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 387.210938 82.003906 C 387.210938 83.898438 384.367188 83.898438 384.367188 82.003906 C 384.367188 80.109375 387.210938 80.109375 387.210938 82.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.484375 124.300781 C 333.484375 126.195312 330.640625 126.195312 330.640625 124.300781 C 330.640625 122.402344 333.484375 122.402344 333.484375 124.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.863281 117.09375 C 345.863281 118.988281 343.023438 118.988281 343.023438 117.09375 C 343.023438 115.195312 345.863281 115.195312 345.863281 117.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 335.449219 132.375 C 335.449219 134.273438 332.605469 134.273438 332.605469 132.375 C 332.605469 130.480469 335.449219 130.480469 335.449219 132.375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.855469 100.507812 C 365.855469 102.402344 363.015625 102.402344 363.015625 100.507812 C 363.015625 98.613281 365.855469 98.613281 365.855469 100.507812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.035156 104.78125 C 355.035156 106.675781 352.191406 106.675781 352.191406 104.78125 C 352.191406 102.886719 355.035156 102.886719 355.035156 104.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 337.269531 129.839844 C 337.269531 131.734375 334.429688 131.734375 334.429688 129.839844 C 334.429688 127.945312 337.269531 127.945312 337.269531 129.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.933594 72.824219 C 374.933594 74.722656 372.089844 74.722656 372.089844 72.824219 C 372.089844 70.929688 374.933594 70.929688 374.933594 72.824219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.351562 107.386719 C 346.351562 109.28125 343.507812 109.28125 343.507812 107.386719 C 343.507812 105.492188 346.351562 105.492188 346.351562 107.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 277.738281 198.8125 C 277.738281 200.710938 274.894531 200.710938 274.894531 198.8125 C 274.894531 196.917969 277.738281 196.917969 277.738281 198.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 303.304688 159.890625 C 303.304688 161.785156 300.460938 161.785156 300.460938 159.890625 C 300.460938 157.996094 303.304688 157.996094 303.304688 159.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.804688 125.644531 C 331.804688 127.539062 328.960938 127.539062 328.960938 125.644531 C 328.960938 123.75 331.804688 123.75 331.804688 125.644531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.847656 115.828125 C 338.847656 117.722656 336.003906 117.722656 336.003906 115.828125 C 336.003906 113.933594 338.847656 113.933594 338.847656 115.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 304.957031 136.007812 C 304.957031 137.902344 302.113281 137.902344 302.113281 136.007812 C 302.113281 134.113281 304.957031 134.113281 304.957031 136.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 394.726562 92.644531 C 394.726562 94.539062 391.882812 94.539062 391.882812 92.644531 C 391.882812 90.75 394.726562 90.75 394.726562 92.644531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.964844 139.207031 C 347.964844 141.101562 345.125 141.101562 345.125 139.207031 C 345.125 137.3125 347.964844 137.3125 347.964844 139.207031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.359375 124.59375 C 356.359375 126.488281 353.515625 126.488281 353.515625 124.59375 C 353.515625 122.699219 356.359375 122.699219 356.359375 124.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.761719 134.183594 C 358.761719 136.078125 355.917969 136.078125 355.917969 134.183594 C 355.917969 132.285156 358.761719 132.285156 358.761719 134.183594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 350.699219 101.542969 C 350.699219 103.4375 347.855469 103.4375 347.855469 101.542969 C 347.855469 99.648438 350.699219 99.648438 350.699219 101.542969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.75 123.929688 C 361.75 125.824219 358.90625 125.824219 358.90625 123.929688 C 358.90625 122.035156 361.75 122.035156 361.75 123.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 262.46875 179.15625 C 262.46875 181.050781 259.625 181.050781 259.625 179.15625 C 259.625 177.261719 262.46875 177.261719 262.46875 179.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 359.957031 120.996094 C 359.957031 122.890625 357.117188 122.890625 357.117188 120.996094 C 357.117188 119.101562 359.957031 119.101562 359.957031 120.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 311.195312 181.625 C 311.195312 183.519531 308.351562 183.519531 308.351562 181.625 C 308.351562 179.730469 311.195312 179.730469 311.195312 181.625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 348.085938 139.773438 C 348.085938 141.667969 345.242188 141.667969 345.242188 139.773438 C 345.242188 137.878906 348.085938 137.878906 348.085938 139.773438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 384.980469 116.910156 C 384.980469 118.804688 382.140625 118.804688 382.140625 116.910156 C 382.140625 115.015625 384.980469 115.015625 384.980469 116.910156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.027344 165.480469 C 355.027344 167.375 352.1875 167.375 352.1875 165.480469 C 352.1875 163.585938 355.027344 163.585938 355.027344 165.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 397.324219 77.707031 C 397.324219 79.601562 394.484375 79.601562 394.484375 77.707031 C 394.484375 75.8125 397.324219 75.8125 397.324219 77.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 369.710938 112.351562 C 369.710938 114.246094 366.871094 114.246094 366.871094 112.351562 C 366.871094 110.457031 369.710938 110.457031 369.710938 112.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.835938 123.238281 C 346.835938 125.132812 343.992188 125.132812 343.992188 123.238281 C 343.992188 121.339844 346.835938 121.339844 346.835938 123.238281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.773438 141.039062 C 362.773438 142.933594 359.929688 142.933594 359.929688 141.039062 C 359.929688 139.144531 362.773438 139.144531 362.773438 141.039062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.816406 133.078125 C 349.816406 134.972656 346.972656 134.972656 346.972656 133.078125 C 346.972656 131.183594 349.816406 131.183594 349.816406 133.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.691406 131.605469 C 367.691406 133.5 364.847656 133.5 364.847656 131.605469 C 364.847656 129.710938 367.691406 129.710938 367.691406 131.605469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.851562 147.613281 C 349.851562 149.507812 347.007812 149.507812 347.007812 147.613281 C 347.007812 145.71875 349.851562 145.71875 349.851562 147.613281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 301.636719 170.472656 C 301.636719 172.367188 298.792969 172.367188 298.792969 170.472656 C 298.792969 168.578125 301.636719 168.578125 301.636719 170.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.589844 115.054688 C 347.589844 116.949219 344.75 116.949219 344.75 115.054688 C 344.75 113.160156 347.589844 113.160156 347.589844 115.054688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.734375 126.558594 C 364.734375 128.453125 361.890625 128.453125 361.890625 126.558594 C 361.890625 124.660156 364.734375 124.660156 364.734375 126.558594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 316.597656 168.140625 C 316.597656 170.035156 313.753906 170.035156 313.753906 168.140625 C 313.753906 166.246094 316.597656 166.246094 316.597656 168.140625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 354.816406 113.820312 C 354.816406 115.714844 351.972656 115.714844 351.972656 113.820312 C 351.972656 111.925781 354.816406 111.925781 354.816406 113.820312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.082031 132.199219 C 346.082031 134.09375 343.238281 134.09375 343.238281 132.199219 C 343.238281 130.304688 346.082031 130.304688 346.082031 132.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.855469 153.789062 C 321.855469 155.683594 319.011719 155.683594 319.011719 153.789062 C 319.011719 151.894531 321.855469 151.894531 321.855469 153.789062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.777344 137.203125 C 336.777344 139.097656 333.933594 139.097656 333.933594 137.203125 C 333.933594 135.308594 336.777344 135.308594 336.777344 137.203125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 323.824219 168.269531 C 323.824219 170.164062 320.980469 170.164062 320.980469 168.269531 C 320.980469 166.375 323.824219 166.375 323.824219 168.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 332.074219 140.691406 C 332.074219 142.585938 329.234375 142.585938 329.234375 140.691406 C 329.234375 138.792969 332.074219 138.792969 332.074219 140.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 328.582031 131.0625 C 328.582031 132.957031 325.742188 132.957031 325.742188 131.0625 C 325.742188 129.167969 328.582031 129.167969 328.582031 131.0625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 312.414062 143.300781 C 312.414062 145.195312 309.570312 145.195312 309.570312 143.300781 C 309.570312 141.40625 312.414062 141.40625 312.414062 143.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 396.148438 108.523438 C 396.148438 110.417969 393.304688 110.417969 393.304688 108.523438 C 393.304688 106.628906 396.148438 106.628906 396.148438 108.523438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.300781 104.921875 C 375.300781 106.816406 372.457031 106.816406 372.457031 104.921875 C 372.457031 103.027344 375.300781 103.027344 375.300781 104.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.640625 124.546875 C 356.640625 126.441406 353.796875 126.441406 353.796875 124.546875 C 353.796875 122.652344 356.640625 122.652344 356.640625 124.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.628906 134.488281 C 357.628906 136.382812 354.785156 136.382812 354.785156 134.488281 C 354.785156 132.59375 357.628906 132.59375 357.628906 134.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.179688 182.546875 C 330.179688 184.441406 327.335938 184.441406 327.335938 182.546875 C 327.335938 180.652344 330.179688 180.652344 330.179688 182.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.582031 148.199219 C 338.582031 150.09375 335.742188 150.09375 335.742188 148.199219 C 335.742188 146.304688 338.582031 146.304688 338.582031 148.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.480469 142.730469 C 363.480469 144.628906 360.636719 144.628906 360.636719 142.730469 C 360.636719 140.835938 363.480469 140.835938 363.480469 142.730469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 371.34375 124.3125 C 371.34375 126.210938 368.5 126.210938 368.5 124.3125 C 368.5 122.417969 371.34375 122.417969 371.34375 124.3125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 324.804688 124.019531 C 324.804688 125.914062 321.960938 125.914062 321.960938 124.019531 C 321.960938 122.125 324.804688 122.125 324.804688 124.019531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.703125 88.597656 C 358.703125 90.492188 355.859375 90.492188 355.859375 88.597656 C 355.859375 86.699219 358.703125 86.699219 358.703125 88.597656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 368.660156 112.800781 C 368.660156 114.695312 365.820312 114.695312 365.820312 112.800781 C 365.820312 110.90625 368.660156 110.90625 368.660156 112.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 377.90625 117.535156 C 377.90625 119.429688 375.0625 119.429688 375.0625 117.535156 C 375.0625 115.640625 377.90625 115.640625 377.90625 117.535156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 313.226562 162.355469 C 313.226562 164.253906 310.382812 164.253906 310.382812 162.355469 C 310.382812 160.460938 313.226562 160.460938 313.226562 162.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 307.660156 176.078125 C 307.660156 177.972656 304.816406 177.972656 304.816406 176.078125 C 304.816406 174.183594 307.660156 174.183594 307.660156 176.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 305.679688 139.476562 C 305.679688 141.371094 302.839844 141.371094 302.839844 139.476562 C 302.839844 137.582031 305.679688 137.582031 305.679688 139.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 323.027344 135.800781 C 323.027344 137.699219 320.1875 137.699219 320.1875 135.800781 C 320.1875 133.90625 323.027344 133.90625 323.027344 135.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.722656 147.664062 C 341.722656 149.558594 338.882812 149.558594 338.882812 147.664062 C 338.882812 145.769531 341.722656 145.769531 341.722656 147.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.847656 105.132812 C 341.847656 107.027344 339.003906 107.027344 339.003906 105.132812 C 339.003906 103.234375 341.847656 103.234375 341.847656 105.132812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 315.921875 148.578125 C 315.921875 150.472656 313.078125 150.472656 313.078125 148.578125 C 313.078125 146.683594 315.921875 146.683594 315.921875 148.578125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 369.9375 149.464844 C 369.9375 151.359375 367.09375 151.359375 367.09375 149.464844 C 367.09375 147.570312 369.9375 147.570312 369.9375 149.464844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.765625 161.476562 C 339.765625 163.371094 336.921875 163.371094 336.921875 161.476562 C 336.921875 159.582031 339.765625 159.582031 339.765625 161.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 342.414062 117.195312 C 342.414062 119.09375 339.570312 119.09375 339.570312 117.195312 C 339.570312 115.300781 342.414062 115.300781 342.414062 117.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.332031 120.675781 C 378.332031 122.570312 375.488281 122.570312 375.488281 120.675781 C 375.488281 118.78125 378.332031 118.78125 378.332031 120.675781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 328.234375 156.4375 C 328.234375 158.335938 325.390625 158.335938 325.390625 156.4375 C 325.390625 154.542969 328.234375 154.542969 328.234375 156.4375 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 398.609375 111.613281 L 397.695312 111.617188 L 396.78125 111.628906 L 395.867188 111.648438 L 394.953125 111.671875 L 393.125 111.734375 L 392.789062 111.746094 L 392.210938 111.769531 L 391.296875 111.804688 L 388.554688 111.921875 L 384.898438 112.09375 L 383.070312 112.1875 L 381.242188 112.289062 L 380.328125 112.34375 L 379.414062 112.402344 L 377.585938 112.527344 L 376.671875 112.597656 L 375.984375 112.652344 L 375.757812 112.667969 L 373.929688 112.824219 L 372.101562 112.988281 L 369.359375 113.257812 L 368.445312 113.351562 L 367.53125 113.449219 L 366.617188 113.542969 L 366.523438 113.554688 L 365.703125 113.640625 L 363.875 113.828125 L 362.960938 113.917969 L 362.046875 114.003906 L 361.132812 114.085938 L 360.21875 114.164062 L 359.304688 114.238281 L 357.476562 114.378906 L 356.5625 114.441406 L 356.265625 114.457031 L 355.648438 114.5 L 354.734375 114.554688 L 350.164062 114.808594 L 349.25 114.867188 L 348.335938 114.929688 L 347.421875 115.003906 L 346.507812 115.085938 L 345.59375 115.183594 L 344.679688 115.300781 L 344.246094 115.363281 L 343.765625 115.433594 L 342.851562 115.589844 L 341.9375 115.773438 L 341.023438 115.988281 L 340.109375 116.238281 L 340.023438 116.265625 L 339.195312 116.53125 L 338.28125 116.871094 L 337.582031 117.171875 L 337.367188 117.265625 L 336.453125 117.722656 L 335.839844 118.074219 L 335.539062 118.257812 L 334.625 118.878906 L 334.488281 118.980469 L 333.710938 119.605469 L 333.402344 119.882812 L 332.796875 120.464844 L 332.492188 120.789062 L 331.882812 121.492188 L 331.726562 121.691406 L 331.070312 122.59375 L 330.96875 122.746094 L 330.5 123.5 L 330.007812 124.402344 L 329.578125 125.308594 L 329.203125 126.210938 L 329.140625 126.378906 L 328.871094 127.117188 L 328.585938 128.019531 L 328.328125 128.921875 L 328.226562 129.332031 L 328.105469 129.828125 L 327.90625 130.730469 L 327.730469 131.636719 L 327.578125 132.539062 L 327.445312 133.445312 L 327.324219 134.347656 L 327.3125 134.441406 L 327.214844 135.25 L 327.121094 136.15625 L 327.039062 137.058594 L 326.964844 137.964844 L 326.902344 138.867188 L 326.84375 139.773438 L 326.796875 140.675781 L 326.753906 141.582031 L 326.71875 142.484375 L 326.691406 143.386719 L 326.671875 144.292969 L 326.65625 145.195312 L 326.652344 146.101562 L 326.652344 147.003906 L 326.664062 147.910156 L 326.683594 148.8125 L 326.714844 149.714844 L 326.761719 150.621094 L 326.816406 151.523438 L 326.886719 152.429688 L 326.972656 153.332031 L 327.074219 154.238281 L 327.191406 155.140625 L 327.3125 155.945312 L 327.328125 156.042969 L 327.480469 156.949219 L 327.65625 157.851562 L 327.847656 158.757812 L 328.058594 159.660156 L 328.226562 160.3125 L 328.292969 160.566406 L 328.546875 161.46875 L 328.816406 162.375 L 329.109375 163.277344 L 329.140625 163.371094 L 329.417969 164.179688 L 329.746094 165.085938 L 330.054688 165.898438 L 330.089844 165.988281 L 330.453125 166.894531 L 330.824219 167.796875 L 330.96875 168.140625 L 331.214844 168.703125 L 331.613281 169.605469 L 331.882812 170.210938 L 332.023438 170.507812 L 332.445312 171.414062 L 332.796875 172.167969 L 332.871094 172.316406 L 333.308594 173.222656 L 333.710938 174.050781 L 333.75 174.125 L 334.625 175.875 L 334.65625 175.933594 L 335.125 176.835938 L 335.539062 177.648438 L 335.589844 177.742188 L 336.074219 178.644531 L 336.453125 179.359375 L 336.5625 179.550781 L 337.070312 180.453125 L 337.367188 180.984375 L 337.59375 181.359375 L 338.140625 182.261719 L 338.28125 182.5 L 338.71875 183.167969 L 339.195312 183.890625 L 339.328125 184.070312 L 339.992188 184.972656 L 340.109375 185.136719 L 340.730469 185.878906 L 341.023438 186.230469 L 341.5625 186.78125 L 341.9375 187.167969 L 342.535156 187.6875 L 342.851562 187.960938 L 343.730469 188.589844 L 343.765625 188.617188 L 344.679688 189.152344 L 345.441406 189.496094 L 345.59375 189.5625 L 346.507812 189.875 L 347.421875 190.085938 L 348.335938 190.203125 L 349.25 190.234375 L 350.164062 190.1875 L 351.078125 190.0625 L 351.992188 189.859375 L 352.90625 189.585938 L 353.152344 189.496094 L 353.820312 189.246094 L 354.734375 188.835938 L 355.199219 188.589844 L 355.648438 188.355469 L 356.5625 187.808594 L 356.746094 187.6875 L 357.476562 187.199219 L 358.042969 186.78125 L 358.390625 186.523438 L 359.1875 185.878906 L 359.304688 185.78125 L 360.21875 184.980469 L 360.222656 184.972656 L 361.132812 184.117188 L 361.179688 184.070312 L 362.046875 183.199219 L 362.078125 183.167969 L 362.925781 182.261719 L 362.960938 182.222656 L 363.734375 181.359375 L 363.875 181.199219 L 364.515625 180.453125 L 364.789062 180.128906 L 365.269531 179.550781 L 365.703125 179.019531 L 366 178.644531 L 366.617188 177.871094 L 366.71875 177.742188 L 367.421875 176.835938 L 367.53125 176.699219 L 368.121094 175.933594 L 368.445312 175.507812 L 368.808594 175.03125 L 369.359375 174.304688 L 369.496094 174.125 L 370.179688 173.222656 L 370.273438 173.101562 L 370.875 172.316406 L 371.1875 171.910156 L 371.574219 171.414062 L 372.101562 170.738281 L 372.28125 170.507812 L 373.003906 169.605469 L 373.015625 169.589844 L 373.75 168.703125 L 373.929688 168.488281 L 374.523438 167.796875 L 374.84375 167.433594 L 375.328125 166.894531 L 375.757812 166.425781 L 376.167969 165.988281 L 376.671875 165.472656 L 377.058594 165.085938 L 377.585938 164.574219 L 378.003906 164.179688 L 378.5 163.734375 L 379.019531 163.277344 L 379.414062 162.945312 L 380.113281 162.375 L 380.328125 162.203125 L 381.242188 161.507812 L 381.292969 161.46875 L 382.15625 160.863281 L 382.585938 160.566406 L 383.070312 160.25 L 383.984375 159.660156 L 384.898438 159.113281 L 385.503906 158.757812 L 385.8125 158.582031 L 386.726562 158.074219 L 387.128906 157.851562 L 387.640625 157.582031 L 388.554688 157.101562 L 388.839844 156.949219 L 389.46875 156.632812 L 390.382812 156.164062 L 390.617188 156.042969 L 391.296875 155.707031 L 392.210938 155.246094 L 392.414062 155.140625 L 393.125 154.789062 L 394.039062 154.320312 L 394.199219 154.238281 L 394.953125 153.855469 L 395.867188 153.371094 L 395.9375 153.332031 L 396.78125 152.886719 L 397.605469 152.429688 L 397.695312 152.378906 L 398.609375 151.867188 L 399.191406 151.523438 L 399.523438 151.332031 L 400.4375 150.777344 L 400.6875 150.621094 L 401.351562 150.207031 L 402.09375 149.714844 L 402.265625 149.605469 L 403.179688 148.980469 L 403.417969 148.8125 L 404.09375 148.328125 L 404.65625 147.910156 L 405.007812 147.644531 L 405.816406 147.003906 L 405.921875 146.921875 L 406.835938 146.164062 L 406.90625 146.101562 L 407.75 145.363281 L 407.933594 145.195312 L 408.664062 144.511719 L 408.894531 144.292969 L 409.578125 143.609375 L 409.796875 143.386719 L 410.492188 142.648438 L 410.640625 142.484375 L 411.40625 141.613281 L 411.433594 141.582031 L 412.179688 140.675781 L 412.320312 140.5 L 412.878906 139.773438 L 413.234375 139.285156 L 413.53125 138.867188 L 414.136719 137.964844 L 414.148438 137.945312 L 414.707031 137.058594 L 415.0625 136.445312 L 415.230469 136.15625 L 415.710938 135.25 L 415.976562 134.710938 L 416.15625 134.347656 L 416.558594 133.445312 L 416.890625 132.609375 L 416.917969 132.539062 L 417.246094 131.636719 L 417.527344 130.730469 L 417.765625 129.828125 L 417.804688 129.660156 L 417.96875 128.921875 L 418.128906 128.019531 L 418.242188 127.117188 L 418.308594 126.210938 L 418.328125 125.308594 L 418.296875 124.402344 L 418.207031 123.5 L 418.0625 122.59375 L 417.851562 121.691406 L 417.804688 121.535156 L 417.574219 120.789062 L 417.21875 119.882812 L 416.890625 119.21875 L 416.769531 118.980469 L 416.222656 118.074219 L 415.976562 117.734375 L 415.550781 117.171875 L 415.0625 116.621094 L 414.726562 116.265625 L 414.148438 115.738281 L 413.710938 115.363281 L 413.234375 115.007812 L 412.421875 114.457031 L 412.320312 114.398438 L 411.40625 113.890625 L 410.714844 113.554688 L 410.492188 113.457031 L 409.578125 113.09375 L 408.664062 112.785156 L 408.210938 112.652344 L 407.75 112.527344 L 406.835938 112.3125 L 405.921875 112.136719 L 405.007812 111.992188 L 404.09375 111.875 L 403.179688 111.785156 L 402.6875 111.746094 L 402.265625 111.714844 L 401.351562 111.667969 L 400.4375 111.636719 L 399.523438 111.621094 L 398.609375 111.613281 "/> +<g clip-path="url(#clip34)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 238.265625 L 436.953125 238.265625 L 436.953125 40.371094 L 236.867188 40.371094 Z M 236.867188 238.265625 "/> +</g> +<g clip-path="url(#clip35)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 204.738281 L 642.519531 204.738281 "/> +</g> +<g clip-path="url(#clip36)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 155.675781 L 642.519531 155.675781 "/> +</g> +<g clip-path="url(#clip37)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 106.609375 L 642.519531 106.609375 "/> +</g> +<g clip-path="url(#clip38)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 57.546875 L 642.519531 57.546875 "/> +</g> +<g clip-path="url(#clip39)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 476.332031 238.265625 L 476.332031 40.371094 "/> +</g> +<g clip-path="url(#clip40)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 525.941406 238.265625 L 525.941406 40.371094 "/> +</g> +<g clip-path="url(#clip41)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 575.550781 238.265625 L 575.550781 40.371094 "/> +</g> +<g clip-path="url(#clip42)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 625.15625 238.265625 L 625.15625 40.371094 "/> +</g> +<g clip-path="url(#clip43)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 229.273438 L 642.519531 229.273438 "/> +</g> +<g clip-path="url(#clip44)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 180.207031 L 642.519531 180.207031 "/> +</g> +<g clip-path="url(#clip45)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 131.140625 L 642.519531 131.140625 "/> +</g> +<g clip-path="url(#clip46)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 82.078125 L 642.519531 82.078125 "/> +</g> +<g clip-path="url(#clip47)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.527344 238.265625 L 451.527344 40.371094 "/> +</g> +<g clip-path="url(#clip48)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.136719 238.265625 L 501.136719 40.371094 "/> +</g> +<g clip-path="url(#clip49)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 550.746094 238.265625 L 550.746094 40.371094 "/> +</g> +<g clip-path="url(#clip50)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 600.351562 238.265625 L 600.351562 40.371094 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 606.597656 103.976562 C 606.597656 105.871094 603.757812 105.871094 603.757812 103.976562 C 603.757812 102.082031 606.597656 102.082031 606.597656 103.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.441406 147.125 C 542.441406 149.019531 539.597656 149.019531 539.597656 147.125 C 539.597656 145.230469 542.441406 145.230469 542.441406 147.125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.4375 108.269531 C 536.4375 110.164062 533.597656 110.164062 533.597656 108.269531 C 533.597656 106.371094 536.4375 106.371094 536.4375 108.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.707031 125.082031 C 556.707031 126.980469 553.867188 126.980469 553.867188 125.082031 C 553.867188 123.1875 556.707031 123.1875 556.707031 125.082031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.546875 121.566406 C 553.546875 123.460938 550.703125 123.460938 550.703125 121.566406 C 550.703125 119.671875 553.546875 119.671875 553.546875 121.566406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.5 129.8125 C 564.5 131.707031 561.65625 131.707031 561.65625 129.8125 C 561.65625 127.917969 564.5 127.917969 564.5 129.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 567.785156 112.917969 C 567.785156 114.8125 564.941406 114.8125 564.941406 112.917969 C 564.941406 111.023438 567.785156 111.023438 567.785156 112.917969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 604.128906 90.554688 C 604.128906 92.449219 601.285156 92.449219 601.285156 90.554688 C 601.285156 88.660156 604.128906 88.660156 604.128906 90.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 540.042969 148.796875 C 540.042969 150.691406 537.203125 150.691406 537.203125 148.796875 C 537.203125 146.902344 540.042969 146.902344 540.042969 148.796875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 576.117188 92.574219 C 576.117188 94.46875 573.277344 94.46875 573.277344 92.574219 C 573.277344 90.679688 576.117188 90.679688 576.117188 92.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.042969 101.820312 C 569.042969 103.714844 566.203125 103.714844 566.203125 101.820312 C 566.203125 99.925781 569.042969 99.925781 569.042969 101.820312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 521.851562 141.730469 C 521.851562 143.625 519.007812 143.625 519.007812 141.730469 C 519.007812 139.835938 521.851562 139.835938 521.851562 141.730469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.035156 127.230469 C 535.035156 129.125 532.191406 129.125 532.191406 127.230469 C 532.191406 125.332031 535.035156 125.332031 535.035156 127.230469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.050781 151.53125 C 533.050781 153.425781 530.207031 153.425781 530.207031 151.53125 C 530.207031 149.632812 533.050781 149.632812 533.050781 151.53125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 588.390625 124.71875 C 588.390625 126.617188 585.550781 126.617188 585.550781 124.71875 C 585.550781 122.824219 588.390625 122.824219 588.390625 124.71875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.300781 131.300781 C 554.300781 133.195312 551.457031 133.195312 551.457031 131.300781 C 551.457031 129.40625 554.300781 129.40625 554.300781 131.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.644531 120.78125 C 555.644531 122.675781 552.800781 122.675781 552.800781 120.78125 C 552.800781 118.886719 555.644531 118.886719 555.644531 120.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 558.28125 117.976562 C 558.28125 119.875 555.4375 119.875 555.4375 117.976562 C 555.4375 116.082031 558.28125 116.082031 558.28125 117.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.722656 134.742188 C 557.722656 136.636719 554.878906 136.636719 554.878906 134.742188 C 554.878906 132.847656 557.722656 132.847656 557.722656 134.742188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.097656 148.679688 C 547.097656 150.574219 544.257812 150.574219 544.257812 148.679688 C 544.257812 146.78125 547.097656 146.78125 547.097656 148.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.84375 110.480469 C 580.84375 112.378906 578 112.378906 578 110.480469 C 578 108.585938 580.84375 108.585938 580.84375 110.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.535156 201.289062 C 508.535156 203.183594 505.691406 203.183594 505.691406 201.289062 C 505.691406 199.394531 508.535156 199.394531 508.535156 201.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.964844 125.9375 C 544.964844 127.832031 542.121094 127.832031 542.121094 125.9375 C 542.121094 124.042969 544.964844 124.042969 544.964844 125.9375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 549.4375 135.417969 C 549.4375 137.3125 546.59375 137.3125 546.59375 135.417969 C 546.59375 133.523438 549.4375 133.523438 549.4375 135.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 511.777344 152.292969 C 511.777344 154.191406 508.933594 154.191406 508.933594 152.292969 C 508.933594 150.398438 511.777344 150.398438 511.777344 152.292969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.648438 139.847656 C 554.648438 141.742188 551.804688 141.742188 551.804688 139.847656 C 551.804688 137.953125 554.648438 137.953125 554.648438 139.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.0625 87.128906 C 551.0625 89.023438 548.21875 89.023438 548.21875 87.128906 C 548.21875 85.234375 551.0625 85.234375 551.0625 87.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 576.230469 129.480469 C 576.230469 131.375 573.386719 131.375 573.386719 129.480469 C 573.386719 127.585938 576.230469 127.585938 576.230469 129.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.320312 120.117188 C 539.320312 122.011719 536.476562 122.011719 536.476562 120.117188 C 536.476562 118.222656 539.320312 118.222656 539.320312 120.117188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 517.585938 134.386719 C 517.585938 136.28125 514.742188 136.28125 514.742188 134.386719 C 514.742188 132.492188 517.585938 132.492188 517.585938 134.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.167969 114.929688 C 560.167969 116.828125 557.324219 116.828125 557.324219 114.929688 C 557.324219 113.035156 560.167969 113.035156 560.167969 114.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.820312 132.527344 C 562.820312 134.421875 559.976562 134.421875 559.976562 132.527344 C 559.976562 130.628906 562.820312 130.628906 562.820312 132.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.621094 137.027344 C 569.621094 138.921875 566.777344 138.921875 566.777344 137.027344 C 566.777344 135.128906 569.621094 135.128906 569.621094 137.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.992188 169.433594 C 535.992188 171.332031 533.148438 171.332031 533.148438 169.433594 C 533.148438 167.539062 535.992188 167.539062 535.992188 169.433594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.699219 146.480469 C 551.699219 148.375 548.855469 148.375 548.855469 146.480469 C 548.855469 144.585938 551.699219 144.585938 551.699219 146.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.238281 110.332031 C 551.238281 112.226562 548.394531 112.226562 548.394531 110.332031 C 548.394531 108.4375 551.238281 108.4375 551.238281 110.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.28125 155.179688 C 533.28125 157.074219 530.4375 157.074219 530.4375 155.179688 C 530.4375 153.285156 533.28125 153.285156 533.28125 155.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 529.386719 159.582031 C 529.386719 161.476562 526.542969 161.476562 526.542969 159.582031 C 526.542969 157.6875 529.386719 157.6875 529.386719 159.582031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.085938 168.210938 C 526.085938 170.105469 523.242188 170.105469 523.242188 168.210938 C 523.242188 166.316406 526.085938 166.316406 526.085938 168.210938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.265625 164.996094 C 527.265625 166.890625 524.421875 166.890625 524.421875 164.996094 C 524.421875 163.101562 527.265625 163.101562 527.265625 164.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.066406 133.375 C 568.066406 135.269531 565.222656 135.269531 565.222656 133.375 C 565.222656 131.480469 568.066406 131.480469 568.066406 133.375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 532.871094 128.585938 C 532.871094 130.480469 530.03125 130.480469 530.03125 128.585938 C 530.03125 126.691406 532.871094 126.691406 532.871094 128.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.644531 104.972656 C 526.644531 106.867188 523.804688 106.867188 523.804688 104.972656 C 523.804688 103.078125 526.644531 103.078125 526.644531 104.972656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 525.71875 139.351562 C 525.71875 141.246094 522.878906 141.246094 522.878906 139.351562 C 522.878906 137.457031 525.71875 137.457031 525.71875 139.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 601.441406 87.300781 C 601.441406 89.195312 598.597656 89.195312 598.597656 87.300781 C 598.597656 85.40625 601.441406 85.40625 601.441406 87.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.621094 134.363281 C 584.621094 136.261719 581.78125 136.261719 581.78125 134.363281 C 581.78125 132.46875 584.621094 132.46875 584.621094 134.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 579.34375 147.191406 C 579.34375 149.085938 576.503906 149.085938 576.503906 147.191406 C 576.503906 145.296875 579.34375 145.296875 579.34375 147.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.15625 103.921875 C 565.15625 105.816406 562.3125 105.816406 562.3125 103.921875 C 562.3125 102.023438 565.15625 102.023438 565.15625 103.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.996094 153.652344 C 542.996094 155.546875 540.152344 155.546875 540.152344 153.652344 C 540.152344 151.757812 542.996094 151.757812 542.996094 153.652344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 559.554688 163.28125 C 559.554688 165.175781 556.714844 165.175781 556.714844 163.28125 C 556.714844 161.382812 559.554688 161.382812 559.554688 163.28125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 546.183594 124.390625 C 546.183594 126.285156 543.339844 126.285156 543.339844 124.390625 C 543.339844 122.496094 546.183594 122.496094 546.183594 124.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 577.351562 135.488281 C 577.351562 137.382812 574.507812 137.382812 574.507812 135.488281 C 574.507812 133.59375 577.351562 133.59375 577.351562 135.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.183594 111.589844 C 568.183594 113.484375 565.339844 113.484375 565.339844 111.589844 C 565.339844 109.695312 568.183594 109.695312 568.183594 111.589844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.523438 149.925781 C 533.523438 151.820312 530.679688 151.820312 530.679688 149.925781 C 530.679688 148.03125 533.523438 148.03125 533.523438 149.925781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 528.953125 141.8125 C 528.953125 143.707031 526.109375 143.707031 526.109375 141.8125 C 526.109375 139.917969 528.953125 139.917969 528.953125 141.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 570.953125 140.722656 C 570.953125 142.617188 568.109375 142.617188 568.109375 140.722656 C 568.109375 138.828125 570.953125 138.828125 570.953125 140.722656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.988281 115.996094 C 557.988281 117.894531 555.144531 117.894531 555.144531 115.996094 C 555.144531 114.101562 557.988281 114.101562 557.988281 115.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.621094 126.515625 C 556.621094 128.410156 553.78125 128.410156 553.78125 126.515625 C 553.78125 124.621094 556.621094 124.621094 556.621094 126.515625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.730469 96.871094 C 560.730469 98.765625 557.886719 98.765625 557.886719 96.871094 C 557.886719 94.976562 560.730469 94.976562 560.730469 96.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.410156 135.070312 C 547.410156 136.964844 544.566406 136.964844 544.566406 135.070312 C 544.566406 133.175781 547.410156 133.175781 547.410156 135.070312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.644531 146.910156 C 565.644531 148.804688 562.804688 148.804688 562.804688 146.910156 C 562.804688 145.015625 565.644531 145.015625 565.644531 146.910156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.734375 137.207031 C 584.734375 139.101562 581.894531 139.101562 581.894531 137.207031 C 581.894531 135.3125 584.734375 135.3125 584.734375 137.207031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.125 122.066406 C 568.125 123.960938 565.28125 123.960938 565.28125 122.066406 C 565.28125 120.171875 568.125 120.171875 568.125 122.066406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.492188 114.390625 C 571.492188 116.289062 568.648438 116.289062 568.648438 114.390625 C 568.648438 112.496094 571.492188 112.496094 571.492188 114.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.003906 125.023438 C 527.003906 126.917969 524.160156 126.917969 524.160156 125.023438 C 524.160156 123.128906 527.003906 123.128906 527.003906 125.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 541.910156 141.15625 C 541.910156 143.050781 539.066406 143.050781 539.066406 141.15625 C 539.066406 139.261719 541.910156 139.261719 541.910156 141.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.011719 140.933594 C 553.011719 142.828125 550.167969 142.828125 550.167969 140.933594 C 550.167969 139.039062 553.011719 139.039062 553.011719 140.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.855469 156.152344 C 508.855469 158.046875 506.011719 158.046875 506.011719 156.152344 C 506.011719 154.257812 508.855469 154.257812 508.855469 156.152344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 541.261719 131.871094 C 541.261719 133.769531 538.417969 133.769531 538.417969 131.871094 C 538.417969 129.976562 541.261719 129.976562 541.261719 131.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.804688 145.546875 C 536.804688 147.441406 533.960938 147.441406 533.960938 145.546875 C 533.960938 143.652344 536.804688 143.652344 536.804688 145.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.574219 119.386719 C 547.574219 121.28125 544.730469 121.28125 544.730469 119.386719 C 544.730469 117.492188 547.574219 117.492188 547.574219 119.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.476562 163.976562 C 548.476562 165.871094 545.632812 165.871094 545.632812 163.976562 C 545.632812 162.082031 548.476562 162.082031 548.476562 163.976562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 552.230469 140.574219 C 552.230469 142.46875 549.386719 142.46875 549.386719 140.574219 C 549.386719 138.675781 552.230469 138.675781 552.230469 140.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 520.75 159.539062 C 520.75 161.433594 517.90625 161.433594 517.90625 159.539062 C 517.90625 157.644531 520.75 157.644531 520.75 159.539062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 523.949219 145.941406 C 523.949219 147.835938 521.109375 147.835938 521.109375 145.941406 C 521.109375 144.046875 523.949219 144.046875 523.949219 145.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 515.5 172.5625 C 515.5 174.460938 512.65625 174.460938 512.65625 172.5625 C 512.65625 170.667969 515.5 170.667969 515.5 172.5625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 566.941406 80.636719 C 566.941406 82.53125 564.097656 82.53125 564.097656 80.636719 C 564.097656 78.742188 566.941406 78.742188 566.941406 80.636719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 573.191406 125.085938 C 573.191406 126.980469 570.351562 126.980469 570.351562 125.085938 C 570.351562 123.191406 573.191406 123.191406 573.191406 125.085938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 528.9375 160.8125 C 528.9375 162.707031 526.09375 162.707031 526.09375 160.8125 C 526.09375 158.917969 528.9375 158.917969 528.9375 160.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 586.824219 130.128906 C 586.824219 132.023438 583.980469 132.023438 583.980469 130.128906 C 583.980469 128.234375 586.824219 128.234375 586.824219 130.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 550.3125 119.078125 C 550.3125 120.972656 547.46875 120.972656 547.46875 119.078125 C 547.46875 117.183594 550.3125 117.183594 550.3125 119.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 546.429688 123.863281 C 546.429688 125.757812 543.585938 125.757812 543.585938 123.863281 C 543.585938 121.96875 546.429688 121.96875 546.429688 123.863281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 575.832031 138.261719 C 575.832031 140.15625 572.988281 140.15625 572.988281 138.261719 C 572.988281 136.367188 575.832031 136.367188 575.832031 138.261719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 552.976562 143.742188 C 552.976562 145.640625 550.132812 145.640625 550.132812 143.742188 C 550.132812 141.847656 552.976562 141.847656 552.976562 143.742188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 543.078125 120.171875 C 543.078125 122.066406 540.234375 122.066406 540.234375 120.171875 C 540.234375 118.277344 543.078125 118.277344 543.078125 120.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.097656 132.628906 C 526.097656 134.523438 523.253906 134.523438 523.253906 132.628906 C 523.253906 130.734375 526.097656 130.734375 526.097656 132.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 525.863281 137.367188 C 525.863281 139.261719 523.019531 139.261719 523.019531 137.367188 C 523.019531 135.46875 525.863281 135.46875 525.863281 137.367188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.226562 117.023438 C 555.226562 118.917969 552.386719 118.917969 552.386719 117.023438 C 552.386719 115.128906 555.226562 115.128906 555.226562 117.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 552.6875 153.339844 C 552.6875 155.234375 549.847656 155.234375 549.847656 153.339844 C 549.847656 151.445312 552.6875 151.445312 552.6875 153.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.648438 149.269531 C 562.648438 151.167969 559.804688 151.167969 559.804688 149.269531 C 559.804688 147.375 562.648438 147.375 562.648438 149.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.730469 100.683594 C 580.730469 102.578125 577.886719 102.578125 577.886719 100.683594 C 577.886719 98.789062 580.730469 98.789062 580.730469 100.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.144531 136.734375 C 526.144531 138.628906 523.300781 138.628906 523.300781 136.734375 C 523.300781 134.839844 526.144531 134.839844 526.144531 136.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.296875 119.378906 C 564.296875 121.273438 561.453125 121.273438 561.453125 119.378906 C 561.453125 117.480469 564.296875 117.480469 564.296875 119.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.921875 151.34375 C 535.921875 153.238281 533.078125 153.238281 533.078125 151.34375 C 533.078125 149.445312 535.921875 149.445312 535.921875 151.34375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 559.167969 134.011719 C 559.167969 135.90625 556.324219 135.90625 556.324219 134.011719 C 556.324219 132.113281 559.167969 132.113281 559.167969 134.011719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 575.714844 139.59375 C 575.714844 141.488281 572.875 141.488281 572.875 139.59375 C 572.875 137.699219 575.714844 137.699219 575.714844 139.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.964844 127.484375 C 554.964844 129.378906 552.125 129.378906 552.125 127.484375 C 552.125 125.589844 554.964844 125.589844 554.964844 127.484375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.070312 141.609375 C 561.070312 143.507812 558.226562 143.507812 558.226562 141.609375 C 558.226562 139.714844 561.070312 139.714844 561.070312 141.609375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.949219 92.960938 C 580.949219 94.855469 578.109375 94.855469 578.109375 92.960938 C 578.109375 91.066406 580.949219 91.066406 580.949219 92.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.234375 120.585938 C 568.234375 122.480469 565.390625 122.480469 565.390625 120.585938 C 565.390625 118.6875 568.234375 118.6875 568.234375 120.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.941406 126.476562 C 562.941406 128.375 560.101562 128.375 560.101562 126.476562 C 560.101562 124.582031 562.941406 124.582031 562.941406 126.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.449219 125.09375 C 542.449219 126.988281 539.609375 126.988281 539.609375 125.09375 C 539.609375 123.199219 542.449219 123.199219 542.449219 125.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.285156 132.101562 C 533.285156 133.996094 530.441406 133.996094 530.441406 132.101562 C 530.441406 130.207031 533.285156 130.207031 533.285156 132.101562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 530.257812 129.453125 C 530.257812 131.347656 527.414062 131.347656 527.414062 129.453125 C 527.414062 127.558594 530.257812 127.558594 530.257812 129.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.316406 92.097656 C 565.316406 93.992188 562.472656 93.992188 562.472656 92.097656 C 562.472656 90.203125 565.316406 90.203125 565.316406 92.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 494.203125 171.3125 C 494.203125 173.210938 491.359375 173.210938 491.359375 171.3125 C 491.359375 169.417969 494.203125 169.417969 494.203125 171.3125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 521.03125 154.332031 C 521.03125 156.226562 518.1875 156.226562 518.1875 154.332031 C 518.1875 152.4375 521.03125 152.4375 521.03125 154.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 514.175781 167.613281 C 514.175781 169.511719 511.332031 169.511719 511.332031 167.613281 C 511.332031 165.71875 514.175781 165.71875 514.175781 167.613281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 524.5 140.367188 C 524.5 142.265625 521.65625 142.265625 521.65625 140.367188 C 521.65625 138.472656 524.5 138.472656 524.5 140.367188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 573.535156 115.972656 C 573.535156 117.867188 570.695312 117.867188 570.695312 115.972656 C 570.695312 114.074219 573.535156 114.074219 573.535156 115.972656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 581.105469 83.78125 C 581.105469 85.679688 578.261719 85.679688 578.261719 83.78125 C 578.261719 81.886719 581.105469 81.886719 581.105469 83.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.796875 140.714844 C 555.796875 142.609375 552.957031 142.609375 552.957031 140.714844 C 552.957031 138.820312 555.796875 138.820312 555.796875 140.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.972656 121.929688 C 562.972656 123.824219 560.128906 123.824219 560.128906 121.929688 C 560.128906 120.035156 562.972656 120.035156 562.972656 121.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.941406 177.320312 C 536.941406 179.214844 534.101562 179.214844 534.101562 177.320312 C 534.101562 175.421875 536.941406 175.421875 536.941406 177.320312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 618.582031 82.671875 C 618.582031 84.566406 615.738281 84.566406 615.738281 82.671875 C 615.738281 80.777344 618.582031 80.777344 618.582031 82.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 546.261719 164.308594 C 546.261719 166.203125 543.417969 166.203125 543.417969 164.308594 C 543.417969 162.414062 546.261719 162.414062 546.261719 164.308594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.160156 156.871094 C 537.160156 158.765625 534.316406 158.765625 534.316406 156.871094 C 534.316406 154.972656 537.160156 154.972656 537.160156 156.871094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 517.492188 133.996094 C 517.492188 135.890625 514.648438 135.890625 514.648438 133.996094 C 514.648438 132.101562 517.492188 132.101562 517.492188 133.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 567.042969 89.429688 C 567.042969 91.324219 564.199219 91.324219 564.199219 89.429688 C 564.199219 87.535156 567.042969 87.535156 567.042969 89.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 592.621094 143.929688 C 592.621094 145.828125 589.777344 145.828125 589.777344 143.929688 C 589.777344 142.035156 592.621094 142.035156 592.621094 143.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.664062 194.777344 C 508.664062 196.671875 505.824219 196.671875 505.824219 194.777344 C 505.824219 192.882812 508.664062 192.882812 508.664062 194.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 566.902344 116.785156 C 566.902344 118.679688 564.058594 118.679688 564.058594 116.785156 C 564.058594 114.890625 566.902344 114.890625 566.902344 116.785156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 596.746094 115.953125 C 596.746094 117.847656 593.90625 117.847656 593.90625 115.953125 C 593.90625 114.058594 596.746094 114.058594 596.746094 115.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 591.257812 79.238281 C 591.257812 81.132812 588.414062 81.132812 588.414062 79.238281 C 588.414062 77.34375 591.257812 77.34375 591.257812 79.238281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.578125 137.199219 C 551.578125 139.09375 548.734375 139.09375 548.734375 137.199219 C 548.734375 135.304688 551.578125 135.304688 551.578125 137.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.398438 148.535156 C 553.398438 150.429688 550.554688 150.429688 550.554688 148.535156 C 550.554688 146.640625 553.398438 146.640625 553.398438 148.535156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.089844 147.710938 C 553.089844 149.605469 550.246094 149.605469 550.246094 147.710938 C 550.246094 145.816406 553.089844 145.816406 553.089844 147.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 490.164062 218.355469 C 490.164062 220.25 487.320312 220.25 487.320312 218.355469 C 487.320312 216.460938 490.164062 216.460938 490.164062 218.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 576.03125 85.472656 C 576.03125 87.367188 573.1875 87.367188 573.1875 85.472656 C 573.1875 83.578125 576.03125 83.578125 576.03125 85.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 530.925781 123.316406 C 530.925781 125.210938 528.082031 125.210938 528.082031 123.316406 C 528.082031 121.421875 530.925781 121.421875 530.925781 123.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.691406 133.339844 C 542.691406 135.234375 539.847656 135.234375 539.847656 133.339844 C 539.847656 131.445312 542.691406 131.445312 542.691406 133.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 529.21875 147.363281 C 529.21875 149.257812 526.375 149.257812 526.375 147.363281 C 526.375 145.46875 529.21875 145.46875 529.21875 147.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.238281 158.46875 C 554.238281 160.367188 551.394531 160.367188 551.394531 158.46875 C 551.394531 156.574219 554.238281 156.574219 554.238281 158.46875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.945312 100.128906 C 561.945312 102.027344 559.105469 102.027344 559.105469 100.128906 C 559.105469 98.234375 561.945312 98.234375 561.945312 100.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 604.597656 78.429688 C 604.597656 80.324219 601.753906 80.324219 601.753906 78.429688 C 601.753906 76.535156 604.597656 76.535156 604.597656 78.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 582.648438 106.371094 C 582.648438 108.265625 579.804688 108.265625 579.804688 106.371094 C 579.804688 104.476562 582.648438 104.476562 582.648438 106.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.5 117.492188 C 584.5 119.386719 581.65625 119.386719 581.65625 117.492188 C 581.65625 115.597656 584.5 115.597656 584.5 117.492188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 550.910156 130.835938 C 550.910156 132.730469 548.066406 132.730469 548.066406 130.835938 C 548.066406 128.941406 550.910156 128.941406 550.910156 130.835938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 521.964844 127.441406 C 521.964844 129.335938 519.121094 129.335938 519.121094 127.441406 C 519.121094 125.546875 521.964844 125.546875 521.964844 127.441406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.097656 134.679688 C 553.097656 136.574219 550.253906 136.574219 550.253906 134.679688 C 550.253906 132.78125 553.097656 132.78125 553.097656 134.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.015625 73.246094 C 564.015625 75.140625 561.171875 75.140625 561.171875 73.246094 C 561.171875 71.351562 564.015625 71.351562 564.015625 73.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.351562 142.601562 C 569.351562 144.496094 566.511719 144.496094 566.511719 142.601562 C 566.511719 140.703125 569.351562 140.703125 569.351562 142.601562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 573.339844 106.328125 C 573.339844 108.222656 570.496094 108.222656 570.496094 106.328125 C 570.496094 104.433594 573.339844 104.433594 573.339844 106.328125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 572.976562 159.316406 C 572.976562 161.214844 570.132812 161.214844 570.132812 159.316406 C 570.132812 157.421875 572.976562 157.421875 572.976562 159.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 581.394531 110.628906 C 581.394531 112.523438 578.554688 112.523438 578.554688 110.628906 C 578.554688 108.734375 581.394531 108.734375 581.394531 110.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.746094 182.839844 C 508.746094 184.734375 505.90625 184.734375 505.90625 182.839844 C 505.90625 180.945312 508.746094 180.945312 508.746094 182.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.191406 146.835938 C 562.191406 148.734375 559.347656 148.734375 559.347656 146.835938 C 559.347656 144.941406 562.191406 144.941406 562.191406 146.835938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 570.582031 115.601562 C 570.582031 117.5 567.742188 117.5 567.742188 115.601562 C 567.742188 113.707031 570.582031 113.707031 570.582031 115.601562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.78125 114.773438 C 569.78125 116.671875 566.9375 116.671875 566.9375 114.773438 C 566.9375 112.878906 569.78125 112.878906 569.78125 114.773438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.179688 141.046875 C 554.179688 142.941406 551.335938 142.941406 551.335938 141.046875 C 551.335938 139.148438 554.179688 139.148438 554.179688 141.046875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 541.308594 142.914062 C 541.308594 144.808594 538.464844 144.808594 538.464844 142.914062 C 538.464844 141.015625 541.308594 141.015625 541.308594 142.914062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 530.351562 144.007812 C 530.351562 145.902344 527.507812 145.902344 527.507812 144.007812 C 527.507812 142.113281 530.351562 142.113281 530.351562 144.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.003906 83.269531 C 580.003906 85.164062 577.160156 85.164062 577.160156 83.269531 C 577.160156 81.375 580.003906 81.375 580.003906 83.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 545.164062 118.140625 C 545.164062 120.035156 542.320312 120.035156 542.320312 118.140625 C 542.320312 116.246094 545.164062 116.246094 545.164062 118.140625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 511.679688 171.125 C 511.679688 173.019531 508.835938 173.019531 508.835938 171.125 C 508.835938 169.230469 511.679688 169.230469 511.679688 171.125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.675781 144.457031 C 537.675781 146.351562 534.835938 146.351562 534.835938 144.457031 C 534.835938 142.5625 537.675781 142.5625 537.675781 144.457031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 516.425781 138.453125 C 516.425781 140.347656 513.582031 140.347656 513.582031 138.453125 C 513.582031 136.558594 516.425781 136.558594 516.425781 138.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.191406 148.382812 C 553.191406 150.277344 550.347656 150.277344 550.347656 148.382812 C 550.347656 146.488281 553.191406 146.488281 553.191406 148.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 540.503906 141.433594 C 540.503906 143.332031 537.660156 143.332031 537.660156 141.433594 C 537.660156 139.539062 540.503906 139.539062 540.503906 141.433594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 593.058594 109.121094 C 593.058594 111.015625 590.214844 111.015625 590.214844 109.121094 C 590.214844 107.222656 593.058594 107.222656 593.058594 109.121094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 579.660156 109.105469 C 579.660156 111 576.816406 111 576.816406 109.105469 C 576.816406 107.210938 579.660156 107.210938 579.660156 109.105469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.816406 145.527344 C 544.816406 147.421875 541.972656 147.421875 541.972656 145.527344 C 541.972656 143.632812 544.816406 143.632812 544.816406 145.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.34375 141.429688 C 553.34375 143.324219 550.5 143.324219 550.5 141.429688 C 550.5 139.535156 553.34375 139.535156 553.34375 141.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 585.621094 96.449219 C 585.621094 98.34375 582.777344 98.34375 582.777344 96.449219 C 582.777344 94.554688 585.621094 94.554688 585.621094 96.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 592.21875 108.589844 C 592.21875 110.488281 589.375 110.488281 589.375 108.589844 C 589.375 106.695312 592.21875 106.695312 592.21875 108.589844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 529.6875 145.636719 C 529.6875 147.53125 526.847656 147.53125 526.847656 145.636719 C 526.847656 143.742188 529.6875 143.742188 529.6875 145.636719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.859375 148.195312 C 536.859375 150.089844 534.019531 150.089844 534.019531 148.195312 C 534.019531 146.300781 536.859375 146.300781 536.859375 148.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.664062 134.253906 C 535.664062 136.148438 532.824219 136.148438 532.824219 134.253906 C 532.824219 132.359375 535.664062 132.359375 535.664062 134.253906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.699219 123.746094 C 556.699219 125.640625 553.859375 125.640625 553.859375 123.746094 C 553.859375 121.851562 556.699219 121.851562 556.699219 123.746094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.242188 139.347656 C 556.242188 141.242188 553.398438 141.242188 553.398438 139.347656 C 553.398438 137.453125 556.242188 137.453125 556.242188 139.347656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.519531 138.804688 C 564.519531 140.699219 561.679688 140.699219 561.679688 138.804688 C 561.679688 136.90625 564.519531 136.90625 564.519531 138.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.9375 123.683594 C 556.9375 125.578125 554.09375 125.578125 554.09375 123.683594 C 554.09375 121.789062 556.9375 121.789062 556.9375 123.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.015625 128.6875 C 562.015625 130.582031 559.175781 130.582031 559.175781 128.6875 C 559.175781 126.789062 562.015625 126.789062 562.015625 128.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 566.710938 102.222656 C 566.710938 104.117188 563.867188 104.117188 563.867188 102.222656 C 563.867188 100.324219 566.710938 100.324219 566.710938 102.222656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.949219 138.128906 C 551.949219 140.023438 549.105469 140.023438 549.105469 138.128906 C 549.105469 136.234375 551.949219 136.234375 551.949219 138.128906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 574.230469 99.199219 C 574.230469 101.09375 571.386719 101.09375 571.386719 99.199219 C 571.386719 97.304688 574.230469 97.304688 574.230469 99.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.332031 140.09375 C 569.332031 141.988281 566.492188 141.988281 566.492188 140.09375 C 566.492188 138.199219 569.332031 138.199219 569.332031 140.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.78125 112.578125 C 548.78125 114.476562 545.9375 114.476562 545.9375 112.578125 C 545.9375 110.683594 548.78125 110.683594 548.78125 112.578125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.730469 145.9375 C 527.730469 147.832031 524.886719 147.832031 524.886719 145.9375 C 524.886719 144.042969 527.730469 144.042969 527.730469 145.9375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 591.96875 112.394531 C 591.96875 114.289062 589.125 114.289062 589.125 112.394531 C 589.125 110.5 591.96875 110.5 591.96875 112.394531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.550781 147.480469 C 537.550781 149.375 534.707031 149.375 534.707031 147.480469 C 534.707031 145.585938 537.550781 145.585938 537.550781 147.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 592.777344 82.003906 C 592.777344 83.898438 589.933594 83.898438 589.933594 82.003906 C 589.933594 80.109375 592.777344 80.109375 592.777344 82.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.050781 124.300781 C 539.050781 126.195312 536.210938 126.195312 536.210938 124.300781 C 536.210938 122.402344 539.050781 122.402344 539.050781 124.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.429688 117.09375 C 551.429688 118.988281 548.589844 118.988281 548.589844 117.09375 C 548.589844 115.195312 551.429688 115.195312 551.429688 117.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 541.015625 132.375 C 541.015625 134.273438 538.171875 134.273438 538.171875 132.375 C 538.171875 130.480469 541.015625 130.480469 541.015625 132.375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.421875 100.507812 C 571.421875 102.402344 568.582031 102.402344 568.582031 100.507812 C 568.582031 98.613281 571.421875 98.613281 571.421875 100.507812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.601562 104.78125 C 560.601562 106.675781 557.757812 106.675781 557.757812 104.78125 C 557.757812 102.886719 560.601562 102.886719 560.601562 104.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.839844 129.839844 C 542.839844 131.734375 539.996094 131.734375 539.996094 129.839844 C 539.996094 127.945312 542.839844 127.945312 542.839844 129.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.5 72.824219 C 580.5 74.722656 577.660156 74.722656 577.660156 72.824219 C 577.660156 70.929688 580.5 70.929688 580.5 72.824219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.917969 107.386719 C 551.917969 109.28125 549.074219 109.28125 549.074219 107.386719 C 549.074219 105.492188 551.917969 105.492188 551.917969 107.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 483.304688 198.8125 C 483.304688 200.710938 480.460938 200.710938 480.460938 198.8125 C 480.460938 196.917969 483.304688 196.917969 483.304688 198.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.871094 159.890625 C 508.871094 161.785156 506.03125 161.785156 506.03125 159.890625 C 506.03125 157.996094 508.871094 157.996094 508.871094 159.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.371094 125.644531 C 537.371094 127.539062 534.527344 127.539062 534.527344 125.644531 C 534.527344 123.75 537.371094 123.75 537.371094 125.644531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.414062 115.828125 C 544.414062 117.722656 541.570312 117.722656 541.570312 115.828125 C 541.570312 113.933594 544.414062 113.933594 544.414062 115.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 510.523438 136.007812 C 510.523438 137.902344 507.679688 137.902344 507.679688 136.007812 C 507.679688 134.113281 510.523438 134.113281 510.523438 136.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 600.292969 92.644531 C 600.292969 94.539062 597.449219 94.539062 597.449219 92.644531 C 597.449219 90.75 600.292969 90.75 600.292969 92.644531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.535156 139.207031 C 553.535156 141.101562 550.691406 141.101562 550.691406 139.207031 C 550.691406 137.3125 553.535156 137.3125 553.535156 139.207031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.925781 124.59375 C 561.925781 126.488281 559.082031 126.488281 559.082031 124.59375 C 559.082031 122.699219 561.925781 122.699219 561.925781 124.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.328125 134.183594 C 564.328125 136.078125 561.484375 136.078125 561.484375 134.183594 C 561.484375 132.285156 564.328125 132.285156 564.328125 134.183594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.265625 101.542969 C 556.265625 103.4375 553.421875 103.4375 553.421875 101.542969 C 553.421875 99.648438 556.265625 99.648438 556.265625 101.542969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 567.316406 123.929688 C 567.316406 125.824219 564.476562 125.824219 564.476562 123.929688 C 564.476562 122.035156 567.316406 122.035156 567.316406 123.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 468.035156 179.15625 C 468.035156 181.050781 465.191406 181.050781 465.191406 179.15625 C 465.191406 177.261719 468.035156 177.261719 468.035156 179.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.527344 120.996094 C 565.527344 122.890625 562.683594 122.890625 562.683594 120.996094 C 562.683594 119.101562 565.527344 119.101562 565.527344 120.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 516.761719 181.625 C 516.761719 183.519531 513.917969 183.519531 513.917969 181.625 C 513.917969 179.730469 516.761719 179.730469 516.761719 181.625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.652344 139.773438 C 553.652344 141.667969 550.8125 141.667969 550.8125 139.773438 C 550.8125 137.878906 553.652344 137.878906 553.652344 139.773438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 590.550781 116.910156 C 590.550781 118.804688 587.707031 118.804688 587.707031 116.910156 C 587.707031 115.015625 590.550781 115.015625 590.550781 116.910156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.59375 165.480469 C 560.59375 167.375 557.753906 167.375 557.753906 165.480469 C 557.753906 163.585938 560.59375 163.585938 560.59375 165.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 602.890625 77.707031 C 602.890625 79.601562 600.050781 79.601562 600.050781 77.707031 C 600.050781 75.8125 602.890625 75.8125 602.890625 77.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 575.28125 112.351562 C 575.28125 114.246094 572.4375 114.246094 572.4375 112.351562 C 572.4375 110.457031 575.28125 110.457031 575.28125 112.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 552.402344 123.238281 C 552.402344 125.132812 549.558594 125.132812 549.558594 123.238281 C 549.558594 121.339844 552.402344 121.339844 552.402344 123.238281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.339844 141.039062 C 568.339844 142.933594 565.496094 142.933594 565.496094 141.039062 C 565.496094 139.144531 568.339844 139.144531 568.339844 141.039062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.382812 133.078125 C 555.382812 134.972656 552.539062 134.972656 552.539062 133.078125 C 552.539062 131.183594 555.382812 131.183594 555.382812 133.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 573.257812 131.605469 C 573.257812 133.5 570.414062 133.5 570.414062 131.605469 C 570.414062 129.710938 573.257812 129.710938 573.257812 131.605469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.417969 147.613281 C 555.417969 149.507812 552.574219 149.507812 552.574219 147.613281 C 552.574219 145.71875 555.417969 145.71875 555.417969 147.613281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 507.203125 170.472656 C 507.203125 172.367188 504.359375 172.367188 504.359375 170.472656 C 504.359375 168.578125 507.203125 168.578125 507.203125 170.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.160156 115.054688 C 553.160156 116.949219 550.316406 116.949219 550.316406 115.054688 C 550.316406 113.160156 553.160156 113.160156 553.160156 115.054688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 570.300781 126.558594 C 570.300781 128.453125 567.457031 128.453125 567.457031 126.558594 C 567.457031 124.660156 570.300781 124.660156 570.300781 126.558594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 522.164062 168.140625 C 522.164062 170.035156 519.324219 170.035156 519.324219 168.140625 C 519.324219 166.246094 522.164062 166.246094 522.164062 168.140625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.382812 113.820312 C 560.382812 115.714844 557.539062 115.714844 557.539062 113.820312 C 557.539062 111.925781 560.382812 111.925781 560.382812 113.820312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.648438 132.199219 C 551.648438 134.09375 548.804688 134.09375 548.804688 132.199219 C 548.804688 130.304688 551.648438 130.304688 551.648438 132.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.421875 153.789062 C 527.421875 155.683594 524.578125 155.683594 524.578125 153.789062 C 524.578125 151.894531 527.421875 151.894531 527.421875 153.789062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.34375 137.203125 C 542.34375 139.097656 539.503906 139.097656 539.503906 137.203125 C 539.503906 135.308594 542.34375 135.308594 542.34375 137.203125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 529.390625 168.269531 C 529.390625 170.164062 526.546875 170.164062 526.546875 168.269531 C 526.546875 166.375 529.390625 166.375 529.390625 168.269531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.644531 140.691406 C 537.644531 142.585938 534.800781 142.585938 534.800781 140.691406 C 534.800781 138.792969 537.644531 138.792969 537.644531 140.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 534.152344 131.0625 C 534.152344 132.957031 531.308594 132.957031 531.308594 131.0625 C 531.308594 129.167969 534.152344 129.167969 534.152344 131.0625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 517.980469 143.300781 C 517.980469 145.195312 515.136719 145.195312 515.136719 143.300781 C 515.136719 141.40625 517.980469 141.40625 517.980469 143.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 601.714844 108.523438 C 601.714844 110.417969 598.871094 110.417969 598.871094 108.523438 C 598.871094 106.628906 601.714844 106.628906 601.714844 108.523438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.867188 104.921875 C 580.867188 106.816406 578.023438 106.816406 578.023438 104.921875 C 578.023438 103.027344 580.867188 103.027344 580.867188 104.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.207031 124.546875 C 562.207031 126.441406 559.367188 126.441406 559.367188 124.546875 C 559.367188 122.652344 562.207031 122.652344 562.207031 124.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 563.195312 134.488281 C 563.195312 136.382812 560.351562 136.382812 560.351562 134.488281 C 560.351562 132.59375 563.195312 132.59375 563.195312 134.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.746094 182.546875 C 535.746094 184.441406 532.902344 184.441406 532.902344 182.546875 C 532.902344 180.652344 535.746094 180.652344 535.746094 182.546875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.152344 148.199219 C 544.152344 150.09375 541.308594 150.09375 541.308594 148.199219 C 541.308594 146.304688 544.152344 146.304688 544.152344 148.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.046875 142.730469 C 569.046875 144.628906 566.207031 144.628906 566.207031 142.730469 C 566.207031 140.835938 569.046875 140.835938 569.046875 142.730469 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 576.910156 124.3125 C 576.910156 126.210938 574.066406 126.210938 574.066406 124.3125 C 574.066406 122.417969 576.910156 122.417969 576.910156 124.3125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 530.371094 124.019531 C 530.371094 125.914062 527.527344 125.914062 527.527344 124.019531 C 527.527344 122.125 530.371094 122.125 530.371094 124.019531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.269531 88.597656 C 564.269531 90.492188 561.425781 90.492188 561.425781 88.597656 C 561.425781 86.699219 564.269531 86.699219 564.269531 88.597656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 574.230469 112.800781 C 574.230469 114.695312 571.386719 114.695312 571.386719 112.800781 C 571.386719 110.90625 574.230469 110.90625 574.230469 112.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.472656 117.535156 C 583.472656 119.429688 580.628906 119.429688 580.628906 117.535156 C 580.628906 115.640625 583.472656 115.640625 583.472656 117.535156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 518.792969 162.355469 C 518.792969 164.253906 515.953125 164.253906 515.953125 162.355469 C 515.953125 160.460938 518.792969 160.460938 518.792969 162.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 513.226562 176.078125 C 513.226562 177.972656 510.386719 177.972656 510.386719 176.078125 C 510.386719 174.183594 513.226562 174.183594 513.226562 176.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 511.25 139.476562 C 511.25 141.371094 508.40625 141.371094 508.40625 139.476562 C 508.40625 137.582031 511.25 137.582031 511.25 139.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 528.597656 135.800781 C 528.597656 137.699219 525.753906 137.699219 525.753906 135.800781 C 525.753906 133.90625 528.597656 133.90625 528.597656 135.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.292969 147.664062 C 547.292969 149.558594 544.449219 149.558594 544.449219 147.664062 C 544.449219 145.769531 547.292969 145.769531 547.292969 147.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.414062 105.132812 C 547.414062 107.027344 544.570312 107.027344 544.570312 105.132812 C 544.570312 103.234375 547.414062 103.234375 547.414062 105.132812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 521.488281 148.578125 C 521.488281 150.472656 518.644531 150.472656 518.644531 148.578125 C 518.644531 146.683594 521.488281 146.683594 521.488281 148.578125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 575.503906 149.464844 C 575.503906 151.359375 572.660156 151.359375 572.660156 149.464844 C 572.660156 147.570312 575.503906 147.570312 575.503906 149.464844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 545.332031 161.476562 C 545.332031 163.371094 542.488281 163.371094 542.488281 161.476562 C 542.488281 159.582031 545.332031 159.582031 545.332031 161.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.980469 117.195312 C 547.980469 119.09375 545.136719 119.09375 545.136719 117.195312 C 545.136719 115.300781 547.980469 115.300781 547.980469 117.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.898438 120.675781 C 583.898438 122.570312 581.054688 122.570312 581.054688 120.675781 C 581.054688 118.78125 583.898438 118.78125 583.898438 120.675781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.800781 156.4375 C 533.800781 158.335938 530.957031 158.335938 530.957031 156.4375 C 530.957031 154.542969 533.800781 154.542969 533.800781 156.4375 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.519531 49.367188 L 560.300781 49.390625 L 559.386719 49.503906 L 558.472656 49.636719 L 557.558594 49.789062 L 556.644531 49.957031 L 555.730469 50.148438 L 555.175781 50.273438 L 554.816406 50.347656 L 553.902344 50.554688 L 552.988281 50.78125 L 552.074219 51.019531 L 551.492188 51.175781 L 551.160156 51.261719 L 550.246094 51.507812 L 549.332031 51.761719 L 548.417969 52.023438 L 548.21875 52.078125 L 547.503906 52.273438 L 546.589844 52.527344 L 545.675781 52.773438 L 544.902344 52.984375 L 544.761719 53.019531 L 543.847656 53.25 L 542.933594 53.472656 L 542.019531 53.691406 L 541.167969 53.886719 L 541.105469 53.902344 L 540.191406 54.097656 L 537.449219 54.671875 L 536.890625 54.792969 L 536.535156 54.863281 L 535.621094 55.058594 L 534.707031 55.261719 L 533.792969 55.480469 L 532.976562 55.695312 L 532.878906 55.71875 L 531.964844 55.96875 L 531.050781 56.25 L 530.136719 56.5625 L 530.042969 56.601562 L 529.222656 56.90625 L 528.308594 57.296875 L 527.878906 57.503906 L 527.394531 57.738281 L 526.480469 58.25 L 526.226562 58.40625 L 525.566406 58.839844 L 524.933594 59.3125 L 524.652344 59.539062 L 523.914062 60.214844 L 523.738281 60.394531 L 523.113281 61.121094 L 522.824219 61.507812 L 522.484375 62.023438 L 522.007812 62.929688 L 521.910156 63.164062 L 521.660156 63.832031 L 521.429688 64.738281 L 521.296875 65.640625 L 521.253906 66.542969 L 521.289062 67.449219 L 521.394531 68.351562 L 521.5625 69.257812 L 521.78125 70.160156 L 521.910156 70.570312 L 522.050781 71.066406 L 522.363281 71.96875 L 522.707031 72.871094 L 522.824219 73.140625 L 523.082031 73.777344 L 523.484375 74.679688 L 523.738281 75.210938 L 523.910156 75.585938 L 524.347656 76.488281 L 524.652344 77.082031 L 524.804688 77.394531 L 525.273438 78.296875 L 525.566406 78.847656 L 525.75 79.199219 L 526.230469 80.105469 L 526.480469 80.558594 L 526.722656 81.007812 L 527.210938 81.914062 L 527.394531 82.25 L 527.707031 82.816406 L 528.191406 83.722656 L 528.308594 83.9375 L 528.6875 84.625 L 529.164062 85.53125 L 529.222656 85.636719 L 529.65625 86.433594 L 530.121094 87.335938 L 530.136719 87.367188 L 530.601562 88.242188 L 531.046875 89.144531 L 531.050781 89.148438 L 531.511719 90.050781 L 531.9375 90.953125 L 531.964844 91.011719 L 532.378906 91.859375 L 532.78125 92.761719 L 532.878906 93.003906 L 533.1875 93.664062 L 533.5625 94.570312 L 533.792969 95.199219 L 533.914062 95.472656 L 534.261719 96.378906 L 534.558594 97.28125 L 534.707031 97.8125 L 534.839844 98.1875 L 535.097656 99.089844 L 535.308594 99.992188 L 535.472656 100.898438 L 535.585938 101.800781 L 535.621094 102.332031 L 535.65625 102.707031 L 535.667969 103.609375 L 535.621094 104.222656 L 535.601562 104.515625 L 535.46875 105.417969 L 535.234375 106.324219 L 534.84375 107.226562 L 534.707031 107.457031 L 534.347656 108.128906 L 533.792969 108.855469 L 533.667969 109.035156 L 532.878906 109.90625 L 532.851562 109.9375 L 531.964844 110.800781 L 531.925781 110.84375 L 531.050781 111.632812 L 530.933594 111.746094 L 530.136719 112.441406 L 529.914062 112.652344 L 529.222656 113.261719 L 528.910156 113.554688 L 528.308594 114.113281 L 527.964844 114.457031 L 527.394531 115.039062 L 527.101562 115.363281 L 526.480469 116.078125 L 526.328125 116.265625 L 525.660156 117.171875 L 525.566406 117.316406 L 525.109375 118.074219 L 524.652344 118.921875 L 524.625 118.980469 L 524.257812 119.882812 L 523.957031 120.789062 L 523.738281 121.589844 L 523.714844 121.691406 L 523.550781 122.59375 L 523.429688 123.5 L 523.335938 124.402344 L 523.242188 125.308594 L 523.089844 126.210938 L 522.824219 126.957031 L 522.765625 127.117188 L 522.070312 128.019531 L 521.910156 128.128906 L 520.996094 128.695312 L 520.5625 128.921875 L 520.082031 129.101562 L 519.167969 129.425781 L 518.253906 129.714844 L 517.902344 129.828125 L 517.339844 129.972656 L 516.425781 130.207031 L 515.511719 130.425781 L 514.597656 130.640625 L 514.207031 130.730469 L 513.683594 130.84375 L 511.855469 131.21875 L 510.941406 131.398438 L 510.027344 131.574219 L 509.726562 131.636719 L 509.113281 131.75 L 508.199219 131.921875 L 507.285156 132.085938 L 506.371094 132.246094 L 505.457031 132.410156 L 504.742188 132.539062 L 504.542969 132.574219 L 503.628906 132.738281 L 502.714844 132.898438 L 501.800781 133.054688 L 499.972656 133.382812 L 499.640625 133.445312 L 499.058594 133.554688 L 498.144531 133.722656 L 497.230469 133.894531 L 496.316406 134.070312 L 495.402344 134.25 L 494.933594 134.347656 L 494.488281 134.445312 L 493.574219 134.644531 L 492.660156 134.851562 L 491.746094 135.066406 L 491.007812 135.25 L 490.832031 135.300781 L 489.917969 135.550781 L 489.003906 135.816406 L 488.089844 136.101562 L 487.914062 136.15625 L 487.175781 136.417969 L 486.261719 136.761719 L 485.523438 137.058594 L 485.347656 137.140625 L 484.433594 137.570312 L 483.660156 137.964844 L 483.519531 138.046875 L 482.605469 138.597656 L 482.179688 138.867188 L 481.691406 139.234375 L 481.003906 139.773438 L 480.777344 139.984375 L 480.050781 140.675781 L 479.863281 140.894531 L 479.269531 141.582031 L 478.949219 142.039062 L 478.632812 142.484375 L 478.121094 143.386719 L 478.035156 143.574219 L 477.691406 144.292969 L 477.359375 145.195312 L 477.121094 146.035156 L 477.101562 146.101562 L 476.894531 147.003906 L 476.75 147.910156 L 476.65625 148.8125 L 476.609375 149.714844 L 476.605469 150.621094 L 476.636719 151.523438 L 476.703125 152.429688 L 476.796875 153.332031 L 476.921875 154.238281 L 477.066406 155.140625 L 477.121094 155.4375 L 477.226562 156.042969 L 477.398438 156.949219 L 477.582031 157.851562 L 477.777344 158.757812 L 477.976562 159.660156 L 478.035156 159.933594 L 478.167969 160.566406 L 478.347656 161.46875 L 478.523438 162.375 L 478.6875 163.277344 L 478.835938 164.179688 L 478.949219 164.96875 L 478.964844 165.085938 L 479.070312 165.988281 L 479.160156 166.894531 L 479.230469 167.796875 L 479.285156 168.703125 L 479.328125 169.605469 L 479.359375 170.507812 L 479.386719 171.414062 L 479.40625 172.316406 L 479.429688 173.222656 L 479.457031 174.125 L 479.488281 175.03125 L 479.53125 175.933594 L 479.585938 176.835938 L 479.652344 177.742188 L 479.738281 178.644531 L 479.839844 179.550781 L 479.863281 179.71875 L 479.957031 180.453125 L 480.089844 181.359375 L 480.25 182.261719 L 480.433594 183.167969 L 480.644531 184.070312 L 480.777344 184.574219 L 480.875 184.972656 L 481.128906 185.878906 L 481.414062 186.78125 L 481.691406 187.566406 L 481.734375 187.6875 L 482.066406 188.589844 L 482.441406 189.496094 L 482.605469 189.859375 L 482.84375 190.398438 L 483.277344 191.300781 L 483.519531 191.761719 L 483.75 192.207031 L 484.257812 193.109375 L 484.433594 193.398438 L 484.804688 194.015625 L 485.347656 194.839844 L 485.398438 194.917969 L 486.03125 195.824219 L 486.261719 196.128906 L 486.71875 196.726562 L 487.175781 197.289062 L 487.460938 197.628906 L 488.089844 198.339844 L 488.269531 198.535156 L 489.003906 199.296875 L 489.148438 199.4375 L 489.917969 200.167969 L 490.113281 200.34375 L 490.832031 200.960938 L 491.1875 201.246094 L 491.746094 201.683594 L 492.40625 202.152344 L 492.660156 202.332031 L 493.574219 202.914062 L 493.820312 203.054688 L 494.488281 203.4375 L 495.402344 203.890625 L 495.558594 203.960938 L 496.316406 204.292969 L 497.230469 204.625 L 498.054688 204.863281 L 498.144531 204.890625 L 499.058594 205.101562 L 499.972656 205.246094 L 500.886719 205.316406 L 501.800781 205.316406 L 502.714844 205.242188 L 503.628906 205.085938 L 504.457031 204.863281 L 504.542969 204.84375 L 505.457031 204.53125 L 506.371094 204.121094 L 506.652344 203.960938 L 507.285156 203.628906 L 508.164062 203.054688 L 508.199219 203.035156 L 509.113281 202.371094 L 509.363281 202.152344 L 510.027344 201.621094 L 510.417969 201.246094 L 510.941406 200.789062 L 511.378906 200.34375 L 511.855469 199.890625 L 512.269531 199.4375 L 512.769531 198.933594 L 513.117188 198.535156 L 513.683594 197.929688 L 513.929688 197.628906 L 514.597656 196.882812 L 514.722656 196.726562 L 515.496094 195.824219 L 515.511719 195.808594 L 516.25 194.917969 L 516.425781 194.71875 L 516.996094 194.015625 L 517.339844 193.617188 L 517.742188 193.109375 L 518.253906 192.503906 L 518.488281 192.207031 L 519.167969 191.382812 L 519.230469 191.300781 L 519.96875 190.398438 L 520.082031 190.265625 L 520.707031 189.496094 L 520.996094 189.15625 L 521.457031 188.589844 L 521.910156 188.050781 L 522.210938 187.6875 L 522.824219 186.957031 L 522.96875 186.78125 L 523.734375 185.878906 L 523.738281 185.871094 L 524.5 184.972656 L 524.652344 184.796875 L 525.28125 184.070312 L 525.566406 183.742188 L 526.078125 183.167969 L 526.480469 182.707031 L 526.882812 182.261719 L 527.394531 181.691406 L 527.707031 181.359375 L 528.308594 180.703125 L 528.550781 180.453125 L 529.222656 179.738281 L 529.410156 179.550781 L 530.136719 178.800781 L 530.296875 178.644531 L 531.050781 177.890625 L 531.214844 177.742188 L 531.964844 177.011719 L 532.160156 176.835938 L 532.878906 176.15625 L 533.140625 175.933594 L 533.792969 175.324219 L 534.144531 175.03125 L 534.707031 174.511719 L 535.171875 174.125 L 535.621094 173.703125 L 536.195312 173.222656 L 536.535156 172.890625 L 537.175781 172.316406 L 537.449219 172.03125 L 538.078125 171.414062 L 538.363281 171.070312 L 538.847656 170.507812 L 539.277344 169.871094 L 539.460938 169.605469 L 539.871094 168.703125 L 540.09375 167.796875 L 540.089844 166.894531 L 539.835938 165.988281 L 539.320312 165.085938 L 539.277344 165.035156 L 538.363281 164.214844 L 538.300781 164.179688 L 537.449219 163.757812 L 536.535156 163.507812 L 535.621094 163.410156 L 534.707031 163.414062 L 533.792969 163.492188 L 532.878906 163.613281 L 531.050781 163.902344 L 530.136719 164.03125 L 529.222656 164.136719 L 528.636719 164.179688 L 528.308594 164.203125 L 527.394531 164.214844 L 526.519531 164.179688 L 526.480469 164.179688 L 525.566406 164.066406 L 524.652344 163.871094 L 523.738281 163.578125 L 523.046875 163.277344 L 522.824219 163.136719 L 521.929688 162.375 L 521.910156 162.335938 L 521.535156 161.46875 L 521.5625 160.566406 L 521.910156 159.660156 L 522.546875 158.757812 L 522.824219 158.453125 L 523.386719 157.851562 L 523.738281 157.53125 L 524.386719 156.949219 L 524.652344 156.730469 L 525.492188 156.042969 L 525.566406 155.984375 L 526.480469 155.285156 L 526.667969 155.140625 L 527.394531 154.582031 L 527.839844 154.238281 L 528.308594 153.851562 L 528.941406 153.332031 L 529.222656 153.078125 L 529.941406 152.429688 L 530.136719 152.222656 L 530.8125 151.523438 L 531.050781 151.222656 L 531.539062 150.621094 L 531.964844 149.949219 L 532.117188 149.714844 L 532.570312 148.8125 L 532.871094 147.910156 L 532.878906 147.867188 L 533.066406 147.003906 L 533.128906 146.101562 L 533.0625 145.195312 L 532.878906 144.300781 L 532.878906 144.292969 L 532.617188 143.386719 L 532.257812 142.484375 L 531.964844 141.898438 L 531.824219 141.582031 L 531.363281 140.675781 L 531.050781 140.140625 L 530.859375 139.773438 L 530.347656 138.867188 L 530.136719 138.507812 L 529.839844 137.964844 L 529.332031 137.058594 L 529.222656 136.855469 L 528.859375 136.15625 L 528.398438 135.25 L 528.308594 135.046875 L 527.988281 134.347656 L 527.621094 133.445312 L 527.394531 132.738281 L 527.324219 132.539062 L 527.128906 131.636719 L 527.097656 130.730469 L 527.367188 129.828125 L 527.394531 129.792969 L 528.144531 128.921875 L 528.308594 128.8125 L 529.222656 128.222656 L 529.546875 128.019531 L 530.136719 127.71875 L 531.050781 127.246094 L 531.289062 127.117188 L 531.964844 126.769531 L 532.878906 126.269531 L 532.976562 126.210938 L 533.792969 125.726562 L 534.4375 125.308594 L 534.707031 125.121094 L 535.621094 124.421875 L 535.644531 124.402344 L 536.535156 123.585938 L 536.621094 123.5 L 537.410156 122.59375 L 537.449219 122.542969 L 538.054688 121.691406 L 538.363281 121.167969 L 538.585938 120.789062 L 539.03125 119.882812 L 539.277344 119.289062 L 539.410156 118.980469 L 539.75 118.074219 L 540.046875 117.171875 L 540.191406 116.691406 L 540.332031 116.265625 L 540.609375 115.363281 L 540.882812 114.457031 L 541.105469 113.753906 L 541.175781 113.554688 L 541.496094 112.652344 L 541.84375 111.746094 L 542.019531 111.3125 L 542.226562 110.84375 L 542.636719 109.9375 L 542.933594 109.292969 L 543.058594 109.035156 L 543.457031 108.128906 L 543.8125 107.226562 L 543.847656 107.121094 L 544.109375 106.324219 L 544.339844 105.417969 L 544.515625 104.515625 L 544.652344 103.609375 L 544.761719 102.707031 L 544.761719 102.703125 L 544.855469 101.800781 L 544.941406 100.898438 L 545.039062 99.992188 L 545.144531 99.089844 L 545.273438 98.1875 L 545.429688 97.28125 L 545.617188 96.378906 L 545.675781 96.148438 L 545.855469 95.472656 L 546.144531 94.570312 L 546.496094 93.664062 L 546.589844 93.46875 L 546.972656 92.761719 L 547.503906 91.957031 L 547.589844 91.859375 L 548.417969 91.085938 L 548.667969 90.953125 L 549.332031 90.667969 L 550.246094 90.601562 L 551.160156 90.839844 L 551.359375 90.953125 L 552.074219 91.382812 L 552.605469 91.859375 L 552.988281 92.214844 L 553.433594 92.761719 L 553.902344 93.371094 L 554.089844 93.664062 L 554.625 94.570312 L 554.816406 94.925781 L 555.074219 95.472656 L 555.457031 96.378906 L 555.730469 97.09375 L 555.796875 97.28125 L 556.058594 98.1875 L 556.28125 99.089844 L 556.457031 99.992188 L 556.585938 100.898438 L 556.644531 101.648438 L 556.65625 101.800781 L 556.667969 102.707031 L 556.644531 103.234375 L 556.625 103.609375 L 556.515625 104.515625 L 556.355469 105.417969 L 556.15625 106.324219 L 555.941406 107.226562 L 555.734375 108.128906 L 555.730469 108.164062 L 555.574219 109.035156 L 555.511719 109.9375 L 555.582031 110.84375 L 555.730469 111.433594 L 555.820312 111.746094 L 556.289062 112.652344 L 556.644531 113.105469 L 557.109375 113.554688 L 557.558594 113.878906 L 558.472656 114.308594 L 559.132812 114.457031 L 559.386719 114.507812 L 560.300781 114.527344 L 560.800781 114.457031 L 561.214844 114.398438 L 562.128906 114.132812 L 563.042969 113.75 L 563.394531 113.554688 L 563.957031 113.257812 L 564.871094 112.6875 L 564.921875 112.652344 L 565.785156 112.105469 L 566.320312 111.746094 L 566.699219 111.535156 L 567.613281 111.019531 L 567.9375 110.84375 L 568.527344 110.582031 L 569.441406 110.214844 L 570.242188 109.9375 L 570.355469 109.90625 L 571.269531 109.695312 L 572.183594 109.542969 L 573.097656 109.449219 L 574.011719 109.425781 L 574.925781 109.472656 L 575.839844 109.589844 L 576.753906 109.773438 L 577.339844 109.9375 L 577.667969 110.046875 L 578.582031 110.417969 L 579.492188 110.84375 L 579.496094 110.84375 L 580.410156 111.398438 L 580.957031 111.746094 L 581.324219 112.007812 L 582.222656 112.652344 L 582.238281 112.660156 L 583.152344 113.367188 L 583.417969 113.554688 L 584.066406 114.035156 L 584.730469 114.457031 L 584.980469 114.621094 L 585.894531 115.113281 L 586.480469 115.363281 L 586.808594 115.496094 L 587.722656 115.789062 L 588.636719 115.992188 L 589.550781 116.128906 L 590.464844 116.210938 L 591.378906 116.25 L 592.292969 116.253906 L 593.207031 116.226562 L 594.121094 116.167969 L 595.035156 116.085938 L 595.949219 115.984375 L 596.863281 115.859375 L 597.777344 115.714844 L 598.691406 115.546875 L 599.566406 115.363281 L 599.605469 115.355469 L 600.519531 115.144531 L 601.433594 114.917969 L 602.347656 114.667969 L 603.03125 114.457031 L 603.261719 114.390625 L 604.175781 114.09375 L 605.089844 113.773438 L 605.660156 113.554688 L 606.003906 113.421875 L 606.917969 113.050781 L 607.820312 112.652344 L 607.832031 112.644531 L 608.746094 112.210938 L 609.660156 111.75 L 609.664062 111.746094 L 610.574219 111.25 L 611.285156 110.84375 L 611.488281 110.71875 L 612.402344 110.152344 L 612.734375 109.9375 L 613.316406 109.542969 L 614.042969 109.035156 L 614.230469 108.890625 L 615.144531 108.199219 L 615.234375 108.128906 L 616.058594 107.457031 L 616.339844 107.226562 L 616.972656 106.660156 L 617.355469 106.324219 L 617.886719 105.808594 L 618.300781 105.417969 L 618.800781 104.898438 L 619.183594 104.515625 L 619.714844 103.921875 L 620.007812 103.609375 L 620.628906 102.875 L 620.777344 102.707031 L 621.5 101.800781 L 621.542969 101.742188 L 622.191406 100.898438 L 622.457031 100.503906 L 622.832031 99.992188 L 623.371094 99.167969 L 623.429688 99.089844 L 624.003906 98.1875 L 624.285156 97.683594 L 624.535156 97.28125 L 625.03125 96.378906 L 625.199219 96.03125 L 625.5 95.472656 L 625.933594 94.570312 L 626.113281 94.136719 L 626.335938 93.664062 L 626.707031 92.761719 L 627.027344 91.878906 L 627.035156 91.859375 L 627.351562 90.953125 L 627.625 90.050781 L 627.855469 89.144531 L 627.941406 88.734375 L 628.058594 88.242188 L 628.230469 87.335938 L 628.359375 86.433594 L 628.441406 85.53125 L 628.480469 84.625 L 628.476562 83.722656 L 628.421875 82.816406 L 628.316406 81.914062 L 628.148438 81.007812 L 627.941406 80.191406 L 627.921875 80.105469 L 627.640625 79.199219 L 627.285156 78.296875 L 627.027344 77.753906 L 626.855469 77.394531 L 626.347656 76.488281 L 626.113281 76.128906 L 625.753906 75.585938 L 625.199219 74.855469 L 625.0625 74.679688 L 624.285156 73.789062 L 624.273438 73.777344 L 623.378906 72.871094 L 623.371094 72.867188 L 622.457031 72.042969 L 622.371094 71.96875 L 621.542969 71.296875 L 621.242188 71.066406 L 620.628906 70.613281 L 619.976562 70.160156 L 619.714844 69.984375 L 618.800781 69.394531 L 618.582031 69.257812 L 617.886719 68.832031 L 617.050781 68.351562 L 616.972656 68.308594 L 616.058594 67.796875 L 615.402344 67.449219 L 615.144531 67.3125 L 614.230469 66.839844 L 613.632812 66.542969 L 613.316406 66.386719 L 612.402344 65.9375 L 611.769531 65.640625 L 611.488281 65.503906 L 610.574219 65.070312 L 609.839844 64.738281 L 609.660156 64.652344 L 608.746094 64.226562 L 607.871094 63.832031 L 607.832031 63.816406 L 606.917969 63.386719 L 606.003906 62.976562 L 605.898438 62.929688 L 605.089844 62.546875 L 604.175781 62.128906 L 603.945312 62.023438 L 603.261719 61.699219 L 602.347656 61.273438 L 602.019531 61.121094 L 601.433594 60.835938 L 600.519531 60.402344 L 600.125 60.214844 L 599.605469 59.960938 L 598.691406 59.519531 L 598.261719 59.3125 L 597.777344 59.070312 L 596.863281 58.621094 L 596.421875 58.40625 L 595.949219 58.171875 L 595.035156 57.722656 L 594.585938 57.503906 L 594.121094 57.269531 L 593.207031 56.824219 L 592.738281 56.601562 L 592.292969 56.378906 L 591.378906 55.941406 L 590.851562 55.695312 L 590.464844 55.507812 L 589.550781 55.078125 L 588.90625 54.792969 L 588.636719 54.664062 L 587.722656 54.253906 L 586.859375 53.886719 L 586.808594 53.863281 L 585.894531 53.46875 L 584.980469 53.101562 L 584.671875 52.984375 L 584.066406 52.738281 L 583.152344 52.390625 L 582.261719 52.078125 L 582.238281 52.070312 L 581.324219 51.746094 L 580.410156 51.449219 L 579.496094 51.175781 L 578.582031 50.898438 L 577.667969 50.648438 L 576.753906 50.421875 L 576.085938 50.273438 L 575.839844 50.210938 L 574.925781 50.007812 L 574.011719 49.828125 L 573.097656 49.667969 L 572.183594 49.53125 L 571.269531 49.414062 L 570.859375 49.367188 "/> +<g clip-path="url(#clip51)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 238.265625 L 642.519531 238.265625 L 642.519531 40.371094 L 442.433594 40.371094 Z M 442.433594 238.265625 "/> +</g> +<g clip-path="url(#clip52)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(85.098039%,85.098039%,85.098039%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 40.371094 L 231.382812 40.371094 L 231.382812 23.34375 L 31.296875 23.34375 Z M 31.296875 40.371094 "/> +</g> +<g style="fill:rgb(10.196078%,10.196078%,10.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="116.667969" y="35.015625"/> + <use xlink:href="#glyph0-2" x="121.562109" y="35.015625"/> + <use xlink:href="#glyph0-3" x="126.45625" y="35.015625"/> + <use xlink:href="#glyph0-4" x="131.350391" y="35.015625"/> + <use xlink:href="#glyph0-5" x="136.244531" y="35.015625"/> + <use xlink:href="#glyph0-6" x="139.175" y="35.015625"/> + <use xlink:href="#glyph0-7" x="141.619922" y="35.015625"/> + <use xlink:href="#glyph0-8" x="143.575" y="35.015625"/> +</g> +<g clip-path="url(#clip53)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(85.098039%,85.098039%,85.098039%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 40.371094 L 436.953125 40.371094 L 436.953125 23.34375 L 236.867188 23.34375 Z M 236.867188 40.371094 "/> +</g> +<g style="fill:rgb(10.196078%,10.196078%,10.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="316.117188" y="35.015625"/> + <use xlink:href="#glyph0-10" x="321.011328" y="35.015625"/> + <use xlink:href="#glyph0-11" x="325.905469" y="35.015625"/> + <use xlink:href="#glyph0-1" x="330.799609" y="35.015625"/> + <use xlink:href="#glyph0-8" x="335.69375" y="35.015625"/> + <use xlink:href="#glyph0-12" x="338.138672" y="35.015625"/> + <use xlink:href="#glyph0-5" x="340.583594" y="35.015625"/> + <use xlink:href="#glyph0-7" x="343.514062" y="35.015625"/> + <use xlink:href="#glyph0-13" x="345.469141" y="35.015625"/> + <use xlink:href="#glyph0-14" x="350.363281" y="35.015625"/> + <use xlink:href="#glyph0-8" x="355.257422" y="35.015625"/> +</g> +<g clip-path="url(#clip54)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(85.098039%,85.098039%,85.098039%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 40.371094 L 642.519531 40.371094 L 642.519531 23.34375 L 442.433594 23.34375 Z M 442.433594 40.371094 "/> +</g> +<g style="fill:rgb(10.196078%,10.196078%,10.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="530.496094" y="35.015625"/> + <use xlink:href="#glyph0-15" x="535.390234" y="35.015625"/> + <use xlink:href="#glyph0-4" x="539.790234" y="35.015625"/> + <use xlink:href="#glyph0-5" x="544.684375" y="35.015625"/> + <use xlink:href="#glyph0-6" x="547.614844" y="35.015625"/> + <use xlink:href="#glyph0-7" x="550.059766" y="35.015625"/> + <use xlink:href="#glyph0-8" x="552.014844" y="35.015625"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.394531 241.007812 L 40.394531 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.003906 241.007812 L 90.003906 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.609375 241.007812 L 139.609375 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.21875 241.007812 L 189.21875 238.265625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="36.480469" y="249.511719"/> + <use xlink:href="#glyph0-17" x="39.410938" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="86.089844" y="249.511719"/> + <use xlink:href="#glyph0-18" x="89.020313" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="137.164062" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="186.773438" y="249.511719"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.960938 241.007812 L 245.960938 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.570312 241.007812 L 295.570312 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.175781 241.007812 L 345.175781 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.785156 241.007812 L 394.785156 238.265625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="242.046875" y="249.511719"/> + <use xlink:href="#glyph0-17" x="244.977344" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="291.65625" y="249.511719"/> + <use xlink:href="#glyph0-18" x="294.586719" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="342.730469" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="392.339844" y="249.511719"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.527344 241.007812 L 451.527344 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.136719 241.007812 L 501.136719 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 550.746094 241.007812 L 550.746094 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 600.351562 241.007812 L 600.351562 238.265625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="447.613281" y="249.511719"/> + <use xlink:href="#glyph0-17" x="450.54375" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="497.222656" y="249.511719"/> + <use xlink:href="#glyph0-18" x="500.153125" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="548.300781" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="597.90625" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="18.542969" y="232.429688"/> + <use xlink:href="#glyph0-17" x="21.473437" y="232.429688"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="18.542969" y="183.363281"/> + <use xlink:href="#glyph0-18" x="21.473437" y="183.363281"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="21.472656" y="134.296875"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="21.472656" y="85.234375"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 229.273438 L 31.296875 229.273438 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 180.207031 L 31.296875 180.207031 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 131.140625 L 31.296875 131.140625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 82.078125 L 31.296875 82.078125 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-1" x="309.707031" y="262.085938"/> + <use xlink:href="#glyph1-2" x="317.043945" y="262.085938"/> + <use xlink:href="#glyph1-3" x="320.707031" y="262.085938"/> + <use xlink:href="#glyph1-4" x="326.824707" y="262.085938"/> + <use xlink:href="#glyph1-5" x="332.942383" y="262.085938"/> + <use xlink:href="#glyph1-6" x="335.38623" y="262.085938"/> + <use xlink:href="#glyph1-7" x="340.88623" y="262.085938"/> + <use xlink:href="#glyph1-8" x="343.942383" y="262.085938"/> + <use xlink:href="#glyph1-2" x="350.060059" y="262.085938"/> + <use xlink:href="#glyph1-9" x="353.723145" y="262.085938"/> + <use xlink:href="#glyph1-10" x="356.779297" y="262.085938"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph2-1" x="13.371094" y="166.523438"/> + <use xlink:href="#glyph2-2" x="13.371094" y="159.186523"/> + <use xlink:href="#glyph2-3" x="13.371094" y="155.523438"/> + <use xlink:href="#glyph2-4" x="13.371094" y="149.405762"/> + <use xlink:href="#glyph2-5" x="13.371094" y="143.288086"/> + <use xlink:href="#glyph2-6" x="13.371094" y="140.844238"/> + <use xlink:href="#glyph2-7" x="13.371094" y="135.344238"/> + <use xlink:href="#glyph2-8" x="13.371094" y="132.288086"/> + <use xlink:href="#glyph2-2" x="13.371094" y="126.17041"/> + <use xlink:href="#glyph2-9" x="13.371094" y="122.507324"/> + <use xlink:href="#glyph2-10" x="13.371094" y="119.451172"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph3-1" x="31.296875" y="14.949219"/> + <use xlink:href="#glyph3-2" x="39.359961" y="14.949219"/> + <use xlink:href="#glyph3-3" x="46.701172" y="14.949219"/> + <use xlink:href="#glyph3-4" x="53.301172" y="14.949219"/> + <use xlink:href="#glyph3-5" x="56.968555" y="14.949219"/> + <use xlink:href="#glyph3-6" x="60.635938" y="14.949219"/> + <use xlink:href="#glyph3-2" x="69.440234" y="14.949219"/> + <use xlink:href="#glyph3-4" x="76.781445" y="14.949219"/> + <use xlink:href="#glyph3-5" x="80.448828" y="14.949219"/> + <use xlink:href="#glyph3-7" x="84.116211" y="14.949219"/> + <use xlink:href="#glyph3-6" x="88.511914" y="14.949219"/> + <use xlink:href="#glyph3-8" x="97.316211" y="14.949219"/> + <use xlink:href="#glyph3-9" x="100.248828" y="14.949219"/> + <use xlink:href="#glyph3-10" x="111.244531" y="14.949219"/> + <use xlink:href="#glyph3-11" x="118.585742" y="14.949219"/> + <use xlink:href="#glyph3-12" x="121.518359" y="14.949219"/> + <use xlink:href="#glyph3-4" x="128.85957" y="14.949219"/> + <use xlink:href="#glyph3-2" x="132.526953" y="14.949219"/> + <use xlink:href="#glyph3-13" x="139.868164" y="14.949219"/> + <use xlink:href="#glyph3-5" x="147.209375" y="14.949219"/> + <use xlink:href="#glyph3-14" x="150.876758" y="14.949219"/> + <use xlink:href="#glyph3-12" x="160.409375" y="14.949219"/> + <use xlink:href="#glyph3-4" x="167.750586" y="14.949219"/> + <use xlink:href="#glyph3-12" x="171.417969" y="14.949219"/> + <use xlink:href="#glyph3-15" x="178.75918" y="14.949219"/> +</g> +</g> +</svg> diff --git a/SD/5.1_model/images/tuning-overfitting-train-1.svg b/SD/5.1_model/images/tuning-overfitting-train-1.svg new file mode 100644 index 0000000..11b29b7 --- /dev/null +++ b/SD/5.1_model/images/tuning-overfitting-train-1.svg @@ -0,0 +1,1427 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="648pt" height="270pt" viewBox="0 0 648 270" version="1.1"> +<defs> +<g> +<symbol overflow="visible" id="glyph0-0"> +<path style="stroke:none;" d="M 0.28125 0 L 0.28125 -6.3125 L 5.296875 -6.3125 L 5.296875 0 Z M 4.5 -0.796875 L 4.5 -5.515625 L 1.078125 -5.515625 L 1.078125 -0.796875 Z M 4.5 -0.796875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-1"> +<path style="stroke:none;" d="M 1.34375 -4.59375 L 1.34375 -1.546875 C 1.34375 -1.304688 1.378906 -1.113281 1.453125 -0.96875 C 1.585938 -0.695312 1.84375 -0.5625 2.21875 -0.5625 C 2.757812 -0.5625 3.125 -0.800781 3.3125 -1.28125 C 3.425781 -1.539062 3.484375 -1.894531 3.484375 -2.34375 L 3.484375 -4.59375 L 4.25 -4.59375 L 4.25 0 L 3.515625 0 L 3.53125 -0.671875 C 3.425781 -0.503906 3.300781 -0.359375 3.15625 -0.234375 C 2.863281 0.00390625 2.503906 0.125 2.078125 0.125 C 1.421875 0.125 0.976562 -0.09375 0.75 -0.53125 C 0.613281 -0.769531 0.546875 -1.082031 0.546875 -1.46875 L 0.546875 -4.59375 Z M 2.40625 -4.71875 Z M 2.40625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-2"> +<path style="stroke:none;" d="M 0.5625 -4.59375 L 1.296875 -4.59375 L 1.296875 -3.953125 C 1.515625 -4.210938 1.742188 -4.398438 1.984375 -4.515625 C 2.234375 -4.640625 2.507812 -4.703125 2.8125 -4.703125 C 3.457031 -4.703125 3.894531 -4.472656 4.125 -4.015625 C 4.25 -3.765625 4.3125 -3.410156 4.3125 -2.953125 L 4.3125 0 L 3.53125 0 L 3.53125 -2.90625 C 3.53125 -3.175781 3.488281 -3.398438 3.40625 -3.578125 C 3.269531 -3.859375 3.019531 -4 2.65625 -4 C 2.476562 -4 2.328125 -3.984375 2.203125 -3.953125 C 1.992188 -3.890625 1.8125 -3.765625 1.65625 -3.578125 C 1.519531 -3.421875 1.429688 -3.257812 1.390625 -3.09375 C 1.359375 -2.9375 1.34375 -2.707031 1.34375 -2.40625 L 1.34375 0 L 0.5625 0 Z M 2.390625 -4.71875 Z M 2.390625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-3"> +<path style="stroke:none;" d="M 1.0625 -2.25 C 1.0625 -1.75 1.164062 -1.332031 1.375 -1 C 1.582031 -0.675781 1.914062 -0.515625 2.375 -0.515625 C 2.726562 -0.515625 3.019531 -0.664062 3.25 -0.96875 C 3.488281 -1.28125 3.609375 -1.722656 3.609375 -2.296875 C 3.609375 -2.878906 3.488281 -3.304688 3.25 -3.578125 C 3.007812 -3.859375 2.710938 -4 2.359375 -4 C 1.972656 -4 1.660156 -3.847656 1.421875 -3.546875 C 1.179688 -3.253906 1.0625 -2.820312 1.0625 -2.25 Z M 2.21875 -4.6875 C 2.570312 -4.6875 2.867188 -4.609375 3.109375 -4.453125 C 3.242188 -4.367188 3.398438 -4.21875 3.578125 -4 L 3.578125 -6.328125 L 4.3125 -6.328125 L 4.3125 0 L 3.625 0 L 3.625 -0.640625 C 3.4375 -0.359375 3.21875 -0.15625 2.96875 -0.03125 C 2.726562 0.09375 2.453125 0.15625 2.140625 0.15625 C 1.617188 0.15625 1.171875 -0.0546875 0.796875 -0.484375 C 0.421875 -0.910156 0.234375 -1.484375 0.234375 -2.203125 C 0.234375 -2.867188 0.40625 -3.445312 0.75 -3.9375 C 1.09375 -4.4375 1.582031 -4.6875 2.21875 -4.6875 Z M 2.21875 -4.6875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-4"> +<path style="stroke:none;" d="M 2.484375 -4.703125 C 2.804688 -4.703125 3.117188 -4.625 3.421875 -4.46875 C 3.734375 -4.320312 3.96875 -4.125 4.125 -3.875 C 4.28125 -3.644531 4.382812 -3.375 4.4375 -3.0625 C 4.488281 -2.851562 4.515625 -2.515625 4.515625 -2.046875 L 1.140625 -2.046875 C 1.148438 -1.585938 1.257812 -1.210938 1.46875 -0.921875 C 1.675781 -0.640625 1.992188 -0.5 2.421875 -0.5 C 2.828125 -0.5 3.148438 -0.632812 3.390625 -0.90625 C 3.523438 -1.0625 3.625 -1.238281 3.6875 -1.4375 L 4.453125 -1.4375 C 4.429688 -1.269531 4.363281 -1.082031 4.25 -0.875 C 4.132812 -0.664062 4.003906 -0.5 3.859375 -0.375 C 3.628906 -0.144531 3.34375 0.0078125 3 0.09375 C 2.8125 0.132812 2.597656 0.15625 2.359375 0.15625 C 1.785156 0.15625 1.300781 -0.0507812 0.90625 -0.46875 C 0.507812 -0.882812 0.3125 -1.46875 0.3125 -2.21875 C 0.3125 -2.945312 0.507812 -3.539062 0.90625 -4 C 1.3125 -4.46875 1.835938 -4.703125 2.484375 -4.703125 Z M 3.71875 -2.671875 C 3.6875 -3.003906 3.613281 -3.269531 3.5 -3.46875 C 3.28125 -3.84375 2.925781 -4.03125 2.4375 -4.03125 C 2.082031 -4.03125 1.785156 -3.898438 1.546875 -3.640625 C 1.304688 -3.390625 1.175781 -3.066406 1.15625 -2.671875 Z M 2.40625 -4.71875 Z M 2.40625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-5"> +<path style="stroke:none;" d="M 0.59375 -4.59375 L 1.328125 -4.59375 L 1.328125 -3.8125 C 1.378906 -3.957031 1.523438 -4.140625 1.765625 -4.359375 C 2.003906 -4.585938 2.273438 -4.703125 2.578125 -4.703125 C 2.585938 -4.703125 2.609375 -4.695312 2.640625 -4.6875 C 2.679688 -4.6875 2.742188 -4.6875 2.828125 -4.6875 L 2.828125 -3.859375 C 2.773438 -3.867188 2.726562 -3.875 2.6875 -3.875 C 2.65625 -3.882812 2.617188 -3.890625 2.578125 -3.890625 C 2.179688 -3.890625 1.878906 -3.765625 1.671875 -3.515625 C 1.460938 -3.265625 1.359375 -2.972656 1.359375 -2.640625 L 1.359375 0 L 0.59375 0 Z M 0.59375 -4.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-6"> +<path style="stroke:none;" d="M 0.765625 -5.296875 C 0.773438 -5.617188 0.828125 -5.851562 0.921875 -6 C 1.109375 -6.269531 1.457031 -6.40625 1.96875 -6.40625 C 2.019531 -6.40625 2.070312 -6.398438 2.125 -6.390625 C 2.175781 -6.390625 2.234375 -6.390625 2.296875 -6.390625 L 2.296875 -5.671875 C 2.210938 -5.679688 2.15625 -5.6875 2.125 -5.6875 C 2.09375 -5.6875 2.054688 -5.6875 2.015625 -5.6875 C 1.785156 -5.6875 1.644531 -5.625 1.59375 -5.5 C 1.550781 -5.382812 1.53125 -5.078125 1.53125 -4.578125 L 2.296875 -4.578125 L 2.296875 -3.96875 L 1.53125 -3.96875 L 1.53125 0 L 0.765625 0 L 0.765625 -3.96875 L 0.125 -3.96875 L 0.125 -4.578125 L 0.765625 -4.578125 Z M 0.765625 -5.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-7"> +<path style="stroke:none;" d="M 0.5625 -4.578125 L 1.359375 -4.578125 L 1.359375 0 L 0.5625 0 Z M 0.5625 -6.3125 L 1.359375 -6.3125 L 1.359375 -5.4375 L 0.5625 -5.4375 Z M 0.5625 -6.3125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-8"> +<path style="stroke:none;" d="M 0.71875 -5.890625 L 1.5 -5.890625 L 1.5 -4.59375 L 2.234375 -4.59375 L 2.234375 -3.96875 L 1.5 -3.96875 L 1.5 -0.96875 C 1.5 -0.800781 1.554688 -0.691406 1.671875 -0.640625 C 1.722656 -0.609375 1.820312 -0.59375 1.96875 -0.59375 C 2 -0.59375 2.035156 -0.59375 2.078125 -0.59375 C 2.128906 -0.59375 2.179688 -0.597656 2.234375 -0.609375 L 2.234375 0 C 2.148438 0.0195312 2.054688 0.0351562 1.953125 0.046875 C 1.859375 0.0664062 1.757812 0.078125 1.65625 0.078125 C 1.289062 0.078125 1.039062 -0.015625 0.90625 -0.203125 C 0.78125 -0.390625 0.71875 -0.628906 0.71875 -0.921875 L 0.71875 -3.96875 L 0.09375 -3.96875 L 0.09375 -4.59375 L 0.71875 -4.59375 Z M 0.71875 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-9"> +<path style="stroke:none;" d="M 1.15625 -1.21875 C 1.15625 -1 1.238281 -0.820312 1.40625 -0.6875 C 1.570312 -0.5625 1.765625 -0.5 1.984375 -0.5 C 2.253906 -0.5 2.519531 -0.5625 2.78125 -0.6875 C 3.207031 -0.894531 3.421875 -1.238281 3.421875 -1.71875 L 3.421875 -2.34375 C 3.328125 -2.28125 3.203125 -2.226562 3.046875 -2.1875 C 2.898438 -2.144531 2.753906 -2.117188 2.609375 -2.109375 L 2.140625 -2.046875 C 1.867188 -2.003906 1.660156 -1.945312 1.515625 -1.875 C 1.273438 -1.738281 1.15625 -1.519531 1.15625 -1.21875 Z M 3.03125 -2.78125 C 3.207031 -2.8125 3.328125 -2.890625 3.390625 -3.015625 C 3.421875 -3.078125 3.4375 -3.175781 3.4375 -3.3125 C 3.4375 -3.570312 3.34375 -3.757812 3.15625 -3.875 C 2.96875 -4 2.703125 -4.0625 2.359375 -4.0625 C 1.953125 -4.0625 1.664062 -3.953125 1.5 -3.734375 C 1.40625 -3.609375 1.34375 -3.429688 1.3125 -3.203125 L 0.59375 -3.203125 C 0.601562 -3.765625 0.785156 -4.15625 1.140625 -4.375 C 1.492188 -4.601562 1.90625 -4.71875 2.375 -4.71875 C 2.914062 -4.71875 3.351562 -4.613281 3.6875 -4.40625 C 4.019531 -4.195312 4.1875 -3.875 4.1875 -3.4375 L 4.1875 -0.796875 C 4.1875 -0.710938 4.203125 -0.644531 4.234375 -0.59375 C 4.273438 -0.550781 4.347656 -0.53125 4.453125 -0.53125 C 4.484375 -0.53125 4.519531 -0.53125 4.5625 -0.53125 C 4.601562 -0.53125 4.648438 -0.535156 4.703125 -0.546875 L 4.703125 0.015625 C 4.578125 0.0546875 4.484375 0.078125 4.421875 0.078125 C 4.359375 0.0859375 4.273438 0.09375 4.171875 0.09375 C 3.898438 0.09375 3.707031 0 3.59375 -0.1875 C 3.53125 -0.28125 3.484375 -0.421875 3.453125 -0.609375 C 3.296875 -0.398438 3.070312 -0.21875 2.78125 -0.0625 C 2.488281 0.0820312 2.160156 0.15625 1.796875 0.15625 C 1.367188 0.15625 1.019531 0.0234375 0.75 -0.234375 C 0.488281 -0.492188 0.359375 -0.816406 0.359375 -1.203125 C 0.359375 -1.628906 0.488281 -1.957031 0.75 -2.1875 C 1.019531 -2.425781 1.367188 -2.578125 1.796875 -2.640625 Z M 2.390625 -4.71875 Z M 2.390625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-10"> +<path style="stroke:none;" d="M 0.5 -6.328125 L 1.265625 -6.328125 L 1.265625 -4.046875 C 1.429688 -4.265625 1.628906 -4.429688 1.859375 -4.546875 C 2.097656 -4.660156 2.351562 -4.71875 2.625 -4.71875 C 3.195312 -4.71875 3.660156 -4.519531 4.015625 -4.125 C 4.378906 -3.738281 4.5625 -3.160156 4.5625 -2.390625 C 4.5625 -1.660156 4.382812 -1.054688 4.03125 -0.578125 C 3.675781 -0.0976562 3.1875 0.140625 2.5625 0.140625 C 2.21875 0.140625 1.921875 0.0546875 1.671875 -0.109375 C 1.535156 -0.203125 1.382812 -0.363281 1.21875 -0.59375 L 1.21875 0 L 0.5 0 Z M 2.515625 -0.53125 C 2.929688 -0.53125 3.242188 -0.695312 3.453125 -1.03125 C 3.660156 -1.363281 3.765625 -1.800781 3.765625 -2.34375 C 3.765625 -2.832031 3.660156 -3.234375 3.453125 -3.546875 C 3.242188 -3.867188 2.9375 -4.03125 2.53125 -4.03125 C 2.1875 -4.03125 1.878906 -3.898438 1.609375 -3.640625 C 1.347656 -3.378906 1.21875 -2.945312 1.21875 -2.34375 C 1.21875 -1.914062 1.269531 -1.566406 1.375 -1.296875 C 1.582031 -0.785156 1.960938 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-11"> +<path style="stroke:none;" d="M 2.390625 -0.5 C 2.898438 -0.5 3.25 -0.691406 3.4375 -1.078125 C 3.632812 -1.460938 3.734375 -1.894531 3.734375 -2.375 C 3.734375 -2.800781 3.664062 -3.148438 3.53125 -3.421875 C 3.3125 -3.847656 2.9375 -4.0625 2.40625 -4.0625 C 1.925781 -4.0625 1.578125 -3.878906 1.359375 -3.515625 C 1.148438 -3.160156 1.046875 -2.726562 1.046875 -2.21875 C 1.046875 -1.726562 1.148438 -1.316406 1.359375 -0.984375 C 1.578125 -0.660156 1.921875 -0.5 2.390625 -0.5 Z M 2.421875 -4.734375 C 3.015625 -4.734375 3.515625 -4.535156 3.921875 -4.140625 C 4.335938 -3.742188 4.546875 -3.160156 4.546875 -2.390625 C 4.546875 -1.648438 4.363281 -1.035156 4 -0.546875 C 3.632812 -0.0664062 3.070312 0.171875 2.3125 0.171875 C 1.6875 0.171875 1.1875 -0.0390625 0.8125 -0.46875 C 0.4375 -0.894531 0.25 -1.472656 0.25 -2.203125 C 0.25 -2.972656 0.445312 -3.585938 0.84375 -4.046875 C 1.238281 -4.503906 1.765625 -4.734375 2.421875 -4.734375 Z M 2.390625 -4.71875 Z M 2.390625 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-12"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph0-13"> +<path style="stroke:none;" d="M 2.1875 -4.6875 C 2.550781 -4.6875 2.867188 -4.597656 3.140625 -4.421875 C 3.285156 -4.316406 3.429688 -4.171875 3.578125 -3.984375 L 3.578125 -4.5625 L 4.296875 -4.5625 L 4.296875 -0.375 C 4.296875 0.207031 4.207031 0.671875 4.03125 1.015625 C 3.71875 1.640625 3.113281 1.953125 2.21875 1.953125 C 1.726562 1.953125 1.3125 1.835938 0.96875 1.609375 C 0.632812 1.390625 0.445312 1.046875 0.40625 0.578125 L 1.1875 0.578125 C 1.226562 0.773438 1.300781 0.929688 1.40625 1.046875 C 1.582031 1.222656 1.859375 1.3125 2.234375 1.3125 C 2.828125 1.3125 3.21875 1.097656 3.40625 0.671875 C 3.507812 0.429688 3.554688 -0.00390625 3.546875 -0.640625 C 3.390625 -0.398438 3.203125 -0.222656 2.984375 -0.109375 C 2.773438 0.00390625 2.488281 0.0625 2.125 0.0625 C 1.632812 0.0625 1.203125 -0.113281 0.828125 -0.46875 C 0.453125 -0.820312 0.265625 -1.410156 0.265625 -2.234375 C 0.265625 -3.003906 0.453125 -3.601562 0.828125 -4.03125 C 1.203125 -4.46875 1.65625 -4.6875 2.1875 -4.6875 Z M 3.578125 -2.3125 C 3.578125 -2.882812 3.457031 -3.304688 3.21875 -3.578125 C 2.988281 -3.859375 2.691406 -4 2.328125 -4 C 1.785156 -4 1.414062 -3.742188 1.21875 -3.234375 C 1.113281 -2.960938 1.0625 -2.609375 1.0625 -2.171875 C 1.0625 -1.648438 1.164062 -1.253906 1.375 -0.984375 C 1.582031 -0.710938 1.863281 -0.578125 2.21875 -0.578125 C 2.769531 -0.578125 3.160156 -0.828125 3.390625 -1.328125 C 3.515625 -1.609375 3.578125 -1.9375 3.578125 -2.3125 Z M 2.28125 -4.71875 Z M 2.28125 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-14"> +<path style="stroke:none;" d="M 0.5625 -6.328125 L 1.34375 -6.328125 L 1.34375 -3.984375 C 1.519531 -4.210938 1.679688 -4.375 1.828125 -4.46875 C 2.078125 -4.632812 2.390625 -4.71875 2.765625 -4.71875 C 3.429688 -4.71875 3.882812 -4.484375 4.125 -4.015625 C 4.25 -3.753906 4.3125 -3.398438 4.3125 -2.953125 L 4.3125 0 L 3.515625 0 L 3.515625 -2.90625 C 3.515625 -3.238281 3.472656 -3.484375 3.390625 -3.640625 C 3.253906 -3.890625 2.992188 -4.015625 2.609375 -4.015625 C 2.285156 -4.015625 1.992188 -3.90625 1.734375 -3.6875 C 1.472656 -3.46875 1.34375 -3.050781 1.34375 -2.4375 L 1.34375 0 L 0.5625 0 Z M 0.5625 -6.328125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-15"> +<path style="stroke:none;" d="M 0.9375 -4.59375 L 2.171875 -0.859375 L 3.453125 -4.59375 L 4.296875 -4.59375 L 2.5625 0 L 1.75 0 L 0.046875 -4.59375 Z M 0.9375 -4.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-16"> +<path style="stroke:none;" d="M 0.359375 -2.84375 L 2.515625 -2.84375 L 2.515625 -2.046875 L 0.359375 -2.046875 Z M 0.359375 -2.84375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-17"> +<path style="stroke:none;" d="M 2.578125 -6.171875 C 3.265625 -6.171875 3.742188 -5.992188 4.015625 -5.640625 C 4.285156 -5.285156 4.421875 -4.921875 4.421875 -4.546875 L 3.65625 -4.546875 C 3.601562 -4.785156 3.53125 -4.972656 3.4375 -5.109375 C 3.25 -5.367188 2.960938 -5.5 2.578125 -5.5 C 2.148438 -5.5 1.804688 -5.296875 1.546875 -4.890625 C 1.296875 -4.492188 1.15625 -3.925781 1.125 -3.1875 C 1.300781 -3.445312 1.523438 -3.640625 1.796875 -3.765625 C 2.046875 -3.878906 2.320312 -3.9375 2.625 -3.9375 C 3.132812 -3.9375 3.582031 -3.769531 3.96875 -3.4375 C 4.351562 -3.113281 4.546875 -2.625 4.546875 -1.96875 C 4.546875 -1.414062 4.363281 -0.921875 4 -0.484375 C 3.632812 -0.0546875 3.117188 0.15625 2.453125 0.15625 C 1.867188 0.15625 1.367188 -0.0625 0.953125 -0.5 C 0.535156 -0.9375 0.328125 -1.671875 0.328125 -2.703125 C 0.328125 -3.460938 0.421875 -4.109375 0.609375 -4.640625 C 0.960938 -5.660156 1.617188 -6.171875 2.578125 -6.171875 Z M 2.515625 -0.53125 C 2.921875 -0.53125 3.222656 -0.664062 3.421875 -0.9375 C 3.628906 -1.207031 3.734375 -1.53125 3.734375 -1.90625 C 3.734375 -2.21875 3.640625 -2.515625 3.453125 -2.796875 C 3.273438 -3.085938 2.953125 -3.234375 2.484375 -3.234375 C 2.148438 -3.234375 1.859375 -3.125 1.609375 -2.90625 C 1.359375 -2.6875 1.234375 -2.351562 1.234375 -1.90625 C 1.234375 -1.519531 1.34375 -1.191406 1.5625 -0.921875 C 1.789062 -0.660156 2.109375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-18"> +<path style="stroke:none;" d="M 2.28125 0.171875 C 1.550781 0.171875 1.019531 -0.0234375 0.6875 -0.421875 C 0.363281 -0.828125 0.203125 -1.316406 0.203125 -1.890625 L 1.015625 -1.890625 C 1.046875 -1.492188 1.117188 -1.203125 1.234375 -1.015625 C 1.441406 -0.691406 1.804688 -0.53125 2.328125 -0.53125 C 2.734375 -0.53125 3.054688 -0.640625 3.296875 -0.859375 C 3.546875 -1.078125 3.671875 -1.359375 3.671875 -1.703125 C 3.671875 -2.128906 3.539062 -2.425781 3.28125 -2.59375 C 3.03125 -2.757812 2.671875 -2.84375 2.203125 -2.84375 C 2.148438 -2.84375 2.097656 -2.84375 2.046875 -2.84375 C 1.992188 -2.84375 1.941406 -2.84375 1.890625 -2.84375 L 1.890625 -3.515625 C 1.972656 -3.515625 2.039062 -3.507812 2.09375 -3.5 C 2.144531 -3.5 2.203125 -3.5 2.265625 -3.5 C 2.554688 -3.5 2.796875 -3.546875 2.984375 -3.640625 C 3.304688 -3.796875 3.46875 -4.082031 3.46875 -4.5 C 3.46875 -4.800781 3.359375 -5.035156 3.140625 -5.203125 C 2.921875 -5.367188 2.671875 -5.453125 2.390625 -5.453125 C 1.867188 -5.453125 1.507812 -5.28125 1.3125 -4.9375 C 1.207031 -4.75 1.144531 -4.476562 1.125 -4.125 L 0.359375 -4.125 C 0.359375 -4.582031 0.453125 -4.972656 0.640625 -5.296875 C 0.953125 -5.867188 1.503906 -6.15625 2.296875 -6.15625 C 2.929688 -6.15625 3.421875 -6.015625 3.765625 -5.734375 C 4.109375 -5.460938 4.28125 -5.0625 4.28125 -4.53125 C 4.28125 -4.144531 4.175781 -3.835938 3.96875 -3.609375 C 3.84375 -3.460938 3.679688 -3.347656 3.484375 -3.265625 C 3.804688 -3.171875 4.054688 -3 4.234375 -2.75 C 4.421875 -2.5 4.515625 -2.191406 4.515625 -1.828125 C 4.515625 -1.234375 4.316406 -0.75 3.921875 -0.375 C 3.535156 -0.0078125 2.988281 0.171875 2.28125 0.171875 Z M 2.28125 0.171875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-19"> +<path style="stroke:none;" d="M 2.375 -6.15625 C 3.175781 -6.15625 3.753906 -5.828125 4.109375 -5.171875 C 4.378906 -4.660156 4.515625 -3.960938 4.515625 -3.078125 C 4.515625 -2.242188 4.390625 -1.554688 4.140625 -1.015625 C 3.785156 -0.222656 3.195312 0.171875 2.375 0.171875 C 1.632812 0.171875 1.082031 -0.148438 0.71875 -0.796875 C 0.425781 -1.328125 0.28125 -2.046875 0.28125 -2.953125 C 0.28125 -3.648438 0.367188 -4.25 0.546875 -4.75 C 0.878906 -5.6875 1.488281 -6.15625 2.375 -6.15625 Z M 2.375 -0.53125 C 2.769531 -0.53125 3.085938 -0.707031 3.328125 -1.0625 C 3.566406 -1.425781 3.6875 -2.085938 3.6875 -3.046875 C 3.6875 -3.753906 3.597656 -4.332031 3.421875 -4.78125 C 3.253906 -5.226562 2.921875 -5.453125 2.421875 -5.453125 C 1.972656 -5.453125 1.640625 -5.238281 1.421875 -4.8125 C 1.210938 -4.382812 1.109375 -3.753906 1.109375 -2.921875 C 1.109375 -2.296875 1.175781 -1.789062 1.3125 -1.40625 C 1.519531 -0.820312 1.875 -0.53125 2.375 -0.53125 Z M 2.375 -0.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-0"> +<path style="stroke:none;" d="M 0.359375 0 L 0.359375 -7.890625 L 6.625 -7.890625 L 6.625 0 Z M 5.625 -0.984375 L 5.625 -6.90625 L 1.34375 -6.90625 L 1.34375 -0.984375 Z M 5.625 -0.984375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-1"> +<path style="stroke:none;" d="M 0.9375 -7.890625 L 4.484375 -7.890625 C 5.191406 -7.890625 5.757812 -7.691406 6.1875 -7.296875 C 6.613281 -6.898438 6.828125 -6.34375 6.828125 -5.625 C 6.828125 -5.007812 6.632812 -4.472656 6.25 -4.015625 C 5.875 -3.554688 5.285156 -3.328125 4.484375 -3.328125 L 2.015625 -3.328125 L 2.015625 0 L 0.9375 0 Z M 5.75 -5.625 C 5.75 -6.207031 5.535156 -6.601562 5.109375 -6.8125 C 4.867188 -6.914062 4.546875 -6.96875 4.140625 -6.96875 L 2.015625 -6.96875 L 2.015625 -4.234375 L 4.140625 -4.234375 C 4.617188 -4.234375 5.003906 -4.332031 5.296875 -4.53125 C 5.597656 -4.738281 5.75 -5.101562 5.75 -5.625 Z M 5.75 -5.625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-2"> +<path style="stroke:none;" d="M 0.734375 -5.75 L 1.65625 -5.75 L 1.65625 -4.765625 C 1.726562 -4.953125 1.910156 -5.179688 2.203125 -5.453125 C 2.492188 -5.734375 2.832031 -5.875 3.21875 -5.875 C 3.238281 -5.875 3.269531 -5.875 3.3125 -5.875 C 3.351562 -5.875 3.425781 -5.867188 3.53125 -5.859375 L 3.53125 -4.828125 C 3.476562 -4.835938 3.425781 -4.84375 3.375 -4.84375 C 3.320312 -4.851562 3.269531 -4.859375 3.21875 -4.859375 C 2.726562 -4.859375 2.351562 -4.703125 2.09375 -4.390625 C 1.832031 -4.078125 1.703125 -3.71875 1.703125 -3.3125 L 1.703125 0 L 0.734375 0 Z M 0.734375 -5.75 "/> +</symbol> +<symbol overflow="visible" id="glyph1-3"> +<path style="stroke:none;" d="M 3.109375 -5.875 C 3.515625 -5.875 3.90625 -5.78125 4.28125 -5.59375 C 4.664062 -5.40625 4.960938 -5.15625 5.171875 -4.84375 C 5.359375 -4.5625 5.484375 -4.222656 5.546875 -3.828125 C 5.609375 -3.566406 5.640625 -3.144531 5.640625 -2.5625 L 1.421875 -2.5625 C 1.441406 -1.976562 1.578125 -1.507812 1.828125 -1.15625 C 2.085938 -0.8125 2.488281 -0.640625 3.03125 -0.640625 C 3.539062 -0.640625 3.945312 -0.804688 4.25 -1.140625 C 4.414062 -1.328125 4.535156 -1.550781 4.609375 -1.8125 L 5.5625 -1.8125 C 5.53125 -1.59375 5.441406 -1.351562 5.296875 -1.09375 C 5.160156 -0.832031 5.003906 -0.625 4.828125 -0.46875 C 4.535156 -0.175781 4.175781 0.0195312 3.75 0.125 C 3.507812 0.175781 3.242188 0.203125 2.953125 0.203125 C 2.234375 0.203125 1.625 -0.0546875 1.125 -0.578125 C 0.632812 -1.097656 0.390625 -1.828125 0.390625 -2.765625 C 0.390625 -3.691406 0.640625 -4.441406 1.140625 -5.015625 C 1.640625 -5.585938 2.296875 -5.875 3.109375 -5.875 Z M 4.640625 -3.328125 C 4.609375 -3.753906 4.519531 -4.09375 4.375 -4.34375 C 4.101562 -4.800781 3.660156 -5.03125 3.046875 -5.03125 C 2.597656 -5.03125 2.222656 -4.867188 1.921875 -4.546875 C 1.628906 -4.234375 1.472656 -3.828125 1.453125 -3.328125 Z M 3.015625 -5.890625 Z M 3.015625 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-4"> +<path style="stroke:none;" d="M 1.328125 -2.8125 C 1.328125 -2.195312 1.457031 -1.679688 1.71875 -1.265625 C 1.976562 -0.847656 2.394531 -0.640625 2.96875 -0.640625 C 3.414062 -0.640625 3.78125 -0.832031 4.0625 -1.21875 C 4.351562 -1.601562 4.5 -2.15625 4.5 -2.875 C 4.5 -3.601562 4.347656 -4.140625 4.046875 -4.484375 C 3.753906 -4.835938 3.390625 -5.015625 2.953125 -5.015625 C 2.472656 -5.015625 2.082031 -4.828125 1.78125 -4.453125 C 1.476562 -4.078125 1.328125 -3.53125 1.328125 -2.8125 Z M 2.78125 -5.859375 C 3.21875 -5.859375 3.585938 -5.765625 3.890625 -5.578125 C 4.054688 -5.472656 4.25 -5.285156 4.46875 -5.015625 L 4.46875 -7.921875 L 5.390625 -7.921875 L 5.390625 0 L 4.53125 0 L 4.53125 -0.796875 C 4.300781 -0.441406 4.03125 -0.1875 3.71875 -0.03125 C 3.414062 0.125 3.066406 0.203125 2.671875 0.203125 C 2.023438 0.203125 1.46875 -0.0625 1 -0.59375 C 0.53125 -1.132812 0.296875 -1.851562 0.296875 -2.75 C 0.296875 -3.59375 0.507812 -4.320312 0.9375 -4.9375 C 1.363281 -5.550781 1.976562 -5.859375 2.78125 -5.859375 Z M 2.78125 -5.859375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-5"> +<path style="stroke:none;" d="M 0.703125 -5.71875 L 1.6875 -5.71875 L 1.6875 0 L 0.703125 0 Z M 0.703125 -7.890625 L 1.6875 -7.890625 L 1.6875 -6.796875 L 0.703125 -6.796875 Z M 0.703125 -7.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-6"> +<path style="stroke:none;" d="M 2.921875 -5.921875 C 3.578125 -5.921875 4.109375 -5.757812 4.515625 -5.4375 C 4.921875 -5.125 5.164062 -4.582031 5.25 -3.8125 L 4.296875 -3.8125 C 4.242188 -4.164062 4.113281 -4.457031 3.90625 -4.6875 C 3.707031 -4.925781 3.378906 -5.046875 2.921875 -5.046875 C 2.304688 -5.046875 1.867188 -4.75 1.609375 -4.15625 C 1.429688 -3.757812 1.34375 -3.273438 1.34375 -2.703125 C 1.34375 -2.128906 1.460938 -1.644531 1.703125 -1.25 C 1.953125 -0.851562 2.335938 -0.65625 2.859375 -0.65625 C 3.265625 -0.65625 3.582031 -0.773438 3.8125 -1.015625 C 4.050781 -1.265625 4.210938 -1.601562 4.296875 -2.03125 L 5.25 -2.03125 C 5.132812 -1.269531 4.863281 -0.710938 4.4375 -0.359375 C 4.007812 -0.00390625 3.457031 0.171875 2.78125 0.171875 C 2.03125 0.171875 1.429688 -0.101562 0.984375 -0.65625 C 0.535156 -1.207031 0.3125 -1.894531 0.3125 -2.71875 C 0.3125 -3.726562 0.554688 -4.515625 1.046875 -5.078125 C 1.535156 -5.640625 2.160156 -5.921875 2.921875 -5.921875 Z M 2.78125 -5.890625 Z M 2.78125 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-7"> +<path style="stroke:none;" d="M 0.90625 -7.359375 L 1.875 -7.359375 L 1.875 -5.75 L 2.796875 -5.75 L 2.796875 -4.96875 L 1.875 -4.96875 L 1.875 -1.203125 C 1.875 -1.003906 1.941406 -0.875 2.078125 -0.8125 C 2.160156 -0.769531 2.285156 -0.75 2.453125 -0.75 C 2.503906 -0.75 2.554688 -0.75 2.609375 -0.75 C 2.660156 -0.75 2.722656 -0.753906 2.796875 -0.765625 L 2.796875 0 C 2.679688 0.03125 2.5625 0.0507812 2.4375 0.0625 C 2.320312 0.0820312 2.195312 0.09375 2.0625 0.09375 C 1.613281 0.09375 1.304688 -0.0195312 1.140625 -0.25 C 0.984375 -0.488281 0.90625 -0.789062 0.90625 -1.15625 L 0.90625 -4.96875 L 0.125 -4.96875 L 0.125 -5.75 L 0.90625 -5.75 Z M 0.90625 -7.359375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-8"> +<path style="stroke:none;" d="M 2.984375 -0.625 C 3.628906 -0.625 4.070312 -0.863281 4.3125 -1.34375 C 4.550781 -1.832031 4.671875 -2.375 4.671875 -2.96875 C 4.671875 -3.507812 4.582031 -3.945312 4.40625 -4.28125 C 4.132812 -4.8125 3.664062 -5.078125 3 -5.078125 C 2.40625 -5.078125 1.972656 -4.847656 1.703125 -4.390625 C 1.441406 -3.941406 1.3125 -3.398438 1.3125 -2.765625 C 1.3125 -2.148438 1.441406 -1.640625 1.703125 -1.234375 C 1.972656 -0.828125 2.398438 -0.625 2.984375 -0.625 Z M 3.03125 -5.921875 C 3.769531 -5.921875 4.394531 -5.671875 4.90625 -5.171875 C 5.414062 -4.679688 5.671875 -3.957031 5.671875 -3 C 5.671875 -2.070312 5.445312 -1.304688 5 -0.703125 C 4.550781 -0.0976562 3.851562 0.203125 2.90625 0.203125 C 2.113281 0.203125 1.484375 -0.0625 1.015625 -0.59375 C 0.546875 -1.125 0.3125 -1.84375 0.3125 -2.75 C 0.3125 -3.71875 0.554688 -4.488281 1.046875 -5.0625 C 1.535156 -5.632812 2.195312 -5.921875 3.03125 -5.921875 Z M 3 -5.890625 Z M 3 -5.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-9"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph1-10"> +<path style="stroke:none;" d="M 4.890625 -3.234375 L 3.6875 -6.71875 L 2.421875 -3.234375 Z M 3.125 -7.890625 L 4.34375 -7.890625 L 7.203125 0 L 6.03125 0 L 5.234375 -2.359375 L 2.109375 -2.359375 L 1.25 0 L 0.15625 0 Z M 3.125 -7.890625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-0"> +<path style="stroke:none;" d="M 0 -0.359375 L -7.890625 -0.359375 L -7.890625 -6.625 L 0 -6.625 Z M -0.984375 -5.625 L -6.90625 -5.625 L -6.90625 -1.34375 L -0.984375 -1.34375 Z M -0.984375 -5.625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-1"> +<path style="stroke:none;" d="M -7.890625 -0.9375 L -7.890625 -4.484375 C -7.890625 -5.191406 -7.691406 -5.757812 -7.296875 -6.1875 C -6.898438 -6.613281 -6.34375 -6.828125 -5.625 -6.828125 C -5.007812 -6.828125 -4.472656 -6.632812 -4.015625 -6.25 C -3.554688 -5.875 -3.328125 -5.285156 -3.328125 -4.484375 L -3.328125 -2.015625 L 0 -2.015625 L 0 -0.9375 Z M -5.625 -5.75 C -6.207031 -5.75 -6.601562 -5.535156 -6.8125 -5.109375 C -6.914062 -4.867188 -6.96875 -4.546875 -6.96875 -4.140625 L -6.96875 -2.015625 L -4.234375 -2.015625 L -4.234375 -4.140625 C -4.234375 -4.617188 -4.332031 -5.003906 -4.53125 -5.296875 C -4.738281 -5.597656 -5.101562 -5.75 -5.625 -5.75 Z M -5.625 -5.75 "/> +</symbol> +<symbol overflow="visible" id="glyph2-2"> +<path style="stroke:none;" d="M -5.75 -0.734375 L -5.75 -1.65625 L -4.765625 -1.65625 C -4.953125 -1.726562 -5.179688 -1.910156 -5.453125 -2.203125 C -5.734375 -2.492188 -5.875 -2.832031 -5.875 -3.21875 C -5.875 -3.238281 -5.875 -3.269531 -5.875 -3.3125 C -5.875 -3.351562 -5.867188 -3.425781 -5.859375 -3.53125 L -4.828125 -3.53125 C -4.835938 -3.476562 -4.84375 -3.425781 -4.84375 -3.375 C -4.851562 -3.320312 -4.859375 -3.269531 -4.859375 -3.21875 C -4.859375 -2.726562 -4.703125 -2.351562 -4.390625 -2.09375 C -4.078125 -1.832031 -3.71875 -1.703125 -3.3125 -1.703125 L 0 -1.703125 L 0 -0.734375 Z M -5.75 -0.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph2-3"> +<path style="stroke:none;" d="M -5.875 -3.109375 C -5.875 -3.515625 -5.78125 -3.90625 -5.59375 -4.28125 C -5.40625 -4.664062 -5.15625 -4.960938 -4.84375 -5.171875 C -4.5625 -5.359375 -4.222656 -5.484375 -3.828125 -5.546875 C -3.566406 -5.609375 -3.144531 -5.640625 -2.5625 -5.640625 L -2.5625 -1.421875 C -1.976562 -1.441406 -1.507812 -1.578125 -1.15625 -1.828125 C -0.8125 -2.085938 -0.640625 -2.488281 -0.640625 -3.03125 C -0.640625 -3.539062 -0.804688 -3.945312 -1.140625 -4.25 C -1.328125 -4.414062 -1.550781 -4.535156 -1.8125 -4.609375 L -1.8125 -5.5625 C -1.59375 -5.53125 -1.351562 -5.441406 -1.09375 -5.296875 C -0.832031 -5.160156 -0.625 -5.003906 -0.46875 -4.828125 C -0.175781 -4.535156 0.0195312 -4.175781 0.125 -3.75 C 0.175781 -3.507812 0.203125 -3.242188 0.203125 -2.953125 C 0.203125 -2.234375 -0.0546875 -1.625 -0.578125 -1.125 C -1.097656 -0.632812 -1.828125 -0.390625 -2.765625 -0.390625 C -3.691406 -0.390625 -4.441406 -0.640625 -5.015625 -1.140625 C -5.585938 -1.640625 -5.875 -2.296875 -5.875 -3.109375 Z M -3.328125 -4.640625 C -3.753906 -4.609375 -4.09375 -4.519531 -4.34375 -4.375 C -4.800781 -4.101562 -5.03125 -3.660156 -5.03125 -3.046875 C -5.03125 -2.597656 -4.867188 -2.222656 -4.546875 -1.921875 C -4.234375 -1.628906 -3.828125 -1.472656 -3.328125 -1.453125 Z M -5.890625 -3.015625 Z M -5.890625 -3.015625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-4"> +<path style="stroke:none;" d="M -2.8125 -1.328125 C -2.195312 -1.328125 -1.679688 -1.457031 -1.265625 -1.71875 C -0.847656 -1.976562 -0.640625 -2.394531 -0.640625 -2.96875 C -0.640625 -3.414062 -0.832031 -3.78125 -1.21875 -4.0625 C -1.601562 -4.351562 -2.15625 -4.5 -2.875 -4.5 C -3.601562 -4.5 -4.140625 -4.347656 -4.484375 -4.046875 C -4.835938 -3.753906 -5.015625 -3.390625 -5.015625 -2.953125 C -5.015625 -2.472656 -4.828125 -2.082031 -4.453125 -1.78125 C -4.078125 -1.476562 -3.53125 -1.328125 -2.8125 -1.328125 Z M -5.859375 -2.78125 C -5.859375 -3.21875 -5.765625 -3.585938 -5.578125 -3.890625 C -5.472656 -4.054688 -5.285156 -4.25 -5.015625 -4.46875 L -7.921875 -4.46875 L -7.921875 -5.390625 L 0 -5.390625 L 0 -4.53125 L -0.796875 -4.53125 C -0.441406 -4.300781 -0.1875 -4.03125 -0.03125 -3.71875 C 0.125 -3.414062 0.203125 -3.066406 0.203125 -2.671875 C 0.203125 -2.023438 -0.0625 -1.46875 -0.59375 -1 C -1.132812 -0.53125 -1.851562 -0.296875 -2.75 -0.296875 C -3.59375 -0.296875 -4.320312 -0.507812 -4.9375 -0.9375 C -5.550781 -1.363281 -5.859375 -1.976562 -5.859375 -2.78125 Z M -5.859375 -2.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-5"> +<path style="stroke:none;" d="M -5.71875 -0.703125 L -5.71875 -1.6875 L 0 -1.6875 L 0 -0.703125 Z M -7.890625 -0.703125 L -7.890625 -1.6875 L -6.796875 -1.6875 L -6.796875 -0.703125 Z M -7.890625 -0.703125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-6"> +<path style="stroke:none;" d="M -5.921875 -2.921875 C -5.921875 -3.578125 -5.757812 -4.109375 -5.4375 -4.515625 C -5.125 -4.921875 -4.582031 -5.164062 -3.8125 -5.25 L -3.8125 -4.296875 C -4.164062 -4.242188 -4.457031 -4.113281 -4.6875 -3.90625 C -4.925781 -3.707031 -5.046875 -3.378906 -5.046875 -2.921875 C -5.046875 -2.304688 -4.75 -1.867188 -4.15625 -1.609375 C -3.757812 -1.429688 -3.273438 -1.34375 -2.703125 -1.34375 C -2.128906 -1.34375 -1.644531 -1.460938 -1.25 -1.703125 C -0.851562 -1.953125 -0.65625 -2.335938 -0.65625 -2.859375 C -0.65625 -3.265625 -0.773438 -3.582031 -1.015625 -3.8125 C -1.265625 -4.050781 -1.601562 -4.210938 -2.03125 -4.296875 L -2.03125 -5.25 C -1.269531 -5.132812 -0.710938 -4.863281 -0.359375 -4.4375 C -0.00390625 -4.007812 0.171875 -3.457031 0.171875 -2.78125 C 0.171875 -2.03125 -0.101562 -1.429688 -0.65625 -0.984375 C -1.207031 -0.535156 -1.894531 -0.3125 -2.71875 -0.3125 C -3.726562 -0.3125 -4.515625 -0.554688 -5.078125 -1.046875 C -5.640625 -1.535156 -5.921875 -2.160156 -5.921875 -2.921875 Z M -5.890625 -2.78125 Z M -5.890625 -2.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-7"> +<path style="stroke:none;" d="M -7.359375 -0.90625 L -7.359375 -1.875 L -5.75 -1.875 L -5.75 -2.796875 L -4.96875 -2.796875 L -4.96875 -1.875 L -1.203125 -1.875 C -1.003906 -1.875 -0.875 -1.941406 -0.8125 -2.078125 C -0.769531 -2.160156 -0.75 -2.285156 -0.75 -2.453125 C -0.75 -2.503906 -0.75 -2.554688 -0.75 -2.609375 C -0.75 -2.660156 -0.753906 -2.722656 -0.765625 -2.796875 L 0 -2.796875 C 0.03125 -2.679688 0.0507812 -2.5625 0.0625 -2.4375 C 0.0820312 -2.320312 0.09375 -2.195312 0.09375 -2.0625 C 0.09375 -1.613281 -0.0195312 -1.304688 -0.25 -1.140625 C -0.488281 -0.984375 -0.789062 -0.90625 -1.15625 -0.90625 L -4.96875 -0.90625 L -4.96875 -0.125 L -5.75 -0.125 L -5.75 -0.90625 Z M -7.359375 -0.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-8"> +<path style="stroke:none;" d="M -0.625 -2.984375 C -0.625 -3.628906 -0.863281 -4.070312 -1.34375 -4.3125 C -1.832031 -4.550781 -2.375 -4.671875 -2.96875 -4.671875 C -3.507812 -4.671875 -3.945312 -4.582031 -4.28125 -4.40625 C -4.8125 -4.132812 -5.078125 -3.664062 -5.078125 -3 C -5.078125 -2.40625 -4.847656 -1.972656 -4.390625 -1.703125 C -3.941406 -1.441406 -3.398438 -1.3125 -2.765625 -1.3125 C -2.148438 -1.3125 -1.640625 -1.441406 -1.234375 -1.703125 C -0.828125 -1.972656 -0.625 -2.398438 -0.625 -2.984375 Z M -5.921875 -3.03125 C -5.921875 -3.769531 -5.671875 -4.394531 -5.171875 -4.90625 C -4.679688 -5.414062 -3.957031 -5.671875 -3 -5.671875 C -2.070312 -5.671875 -1.304688 -5.445312 -0.703125 -5 C -0.0976562 -4.550781 0.203125 -3.851562 0.203125 -2.90625 C 0.203125 -2.113281 -0.0625 -1.484375 -0.59375 -1.015625 C -1.125 -0.546875 -1.84375 -0.3125 -2.75 -0.3125 C -3.71875 -0.3125 -4.488281 -0.554688 -5.0625 -1.046875 C -5.632812 -1.535156 -5.921875 -2.195312 -5.921875 -3.03125 Z M -5.890625 -3 Z M -5.890625 -3 "/> +</symbol> +<symbol overflow="visible" id="glyph2-9"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph2-10"> +<path style="stroke:none;" d="M -4.5625 -3.796875 C -4.5625 -4.253906 -4.625 -4.609375 -4.75 -4.859375 C -4.9375 -5.253906 -5.289062 -5.453125 -5.8125 -5.453125 C -6.320312 -5.453125 -6.664062 -5.238281 -6.84375 -4.8125 C -6.945312 -4.582031 -7 -4.234375 -7 -3.765625 L -7 -1.859375 L -4.5625 -1.859375 Z M -0.90625 -4.15625 C -0.90625 -4.8125 -1.097656 -5.28125 -1.484375 -5.5625 C -1.722656 -5.738281 -2.015625 -5.828125 -2.359375 -5.828125 C -2.929688 -5.828125 -3.320312 -5.570312 -3.53125 -5.0625 C -3.632812 -4.789062 -3.6875 -4.429688 -3.6875 -3.984375 L -3.6875 -1.859375 L -0.90625 -1.859375 Z M -7.890625 -0.8125 L -7.890625 -4.203125 C -7.890625 -5.128906 -7.613281 -5.785156 -7.0625 -6.171875 C -6.738281 -6.398438 -6.363281 -6.515625 -5.9375 -6.515625 C -5.4375 -6.515625 -5.023438 -6.375 -4.703125 -6.09375 C -4.535156 -5.945312 -4.382812 -5.734375 -4.25 -5.453125 C -4.09375 -5.859375 -3.921875 -6.160156 -3.734375 -6.359375 C -3.390625 -6.710938 -2.910156 -6.890625 -2.296875 -6.890625 C -1.796875 -6.890625 -1.335938 -6.734375 -0.921875 -6.421875 C -0.304688 -5.941406 0 -5.179688 0 -4.140625 L 0 -0.8125 Z M -7.890625 -0.8125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-0"> +<path style="stroke:none;" d="M 0.421875 0 L 0.421875 -9.46875 L 7.9375 -9.46875 L 7.9375 0 Z M 6.75 -1.1875 L 6.75 -8.28125 L 1.609375 -8.28125 L 1.609375 -1.1875 Z M 6.75 -1.1875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-1"> +<path style="stroke:none;" d="M 7.890625 -9.46875 L 7.890625 -8.34375 L 4.703125 -8.34375 L 4.703125 0 L 3.40625 0 L 3.40625 -8.34375 L 0.21875 -8.34375 L 0.21875 -9.46875 Z M 7.890625 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-2"> +<path style="stroke:none;" d="M 0.890625 -6.90625 L 1.984375 -6.90625 L 1.984375 -5.71875 C 2.078125 -5.945312 2.296875 -6.226562 2.640625 -6.5625 C 2.992188 -6.894531 3.40625 -7.0625 3.875 -7.0625 C 3.894531 -7.0625 3.929688 -7.054688 3.984375 -7.046875 C 4.035156 -7.046875 4.117188 -7.039062 4.234375 -7.03125 L 4.234375 -5.796875 C 4.171875 -5.816406 4.109375 -5.828125 4.046875 -5.828125 C 3.992188 -5.828125 3.929688 -5.828125 3.859375 -5.828125 C 3.273438 -5.828125 2.828125 -5.640625 2.515625 -5.265625 C 2.203125 -4.890625 2.046875 -4.457031 2.046875 -3.96875 L 2.046875 0 L 0.890625 0 Z M 0.890625 -6.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph3-3"> +<path style="stroke:none;" d="M 1.734375 -1.84375 C 1.734375 -1.5 1.851562 -1.226562 2.09375 -1.03125 C 2.34375 -0.84375 2.640625 -0.75 2.984375 -0.75 C 3.390625 -0.75 3.785156 -0.84375 4.171875 -1.03125 C 4.804688 -1.351562 5.125 -1.867188 5.125 -2.578125 L 5.125 -3.515625 C 4.988281 -3.421875 4.804688 -3.34375 4.578125 -3.28125 C 4.359375 -3.226562 4.140625 -3.1875 3.921875 -3.15625 L 3.21875 -3.0625 C 2.800781 -3.007812 2.488281 -2.921875 2.28125 -2.796875 C 1.914062 -2.597656 1.734375 -2.28125 1.734375 -1.84375 Z M 4.546875 -4.1875 C 4.816406 -4.21875 5 -4.328125 5.09375 -4.515625 C 5.132812 -4.617188 5.15625 -4.769531 5.15625 -4.96875 C 5.15625 -5.363281 5.015625 -5.648438 4.734375 -5.828125 C 4.453125 -6.003906 4.050781 -6.09375 3.53125 -6.09375 C 2.925781 -6.09375 2.5 -5.929688 2.25 -5.609375 C 2.101562 -5.421875 2.007812 -5.148438 1.96875 -4.796875 L 0.890625 -4.796875 C 0.910156 -5.648438 1.1875 -6.242188 1.71875 -6.578125 C 2.25 -6.910156 2.863281 -7.078125 3.5625 -7.078125 C 4.375 -7.078125 5.03125 -6.921875 5.53125 -6.609375 C 6.039062 -6.296875 6.296875 -5.8125 6.296875 -5.15625 L 6.296875 -1.1875 C 6.296875 -1.0625 6.316406 -0.960938 6.359375 -0.890625 C 6.410156 -0.816406 6.515625 -0.78125 6.671875 -0.78125 C 6.722656 -0.78125 6.78125 -0.785156 6.84375 -0.796875 C 6.914062 -0.804688 6.988281 -0.816406 7.0625 -0.828125 L 7.0625 0.03125 C 6.875 0.0820312 6.734375 0.113281 6.640625 0.125 C 6.546875 0.132812 6.421875 0.140625 6.265625 0.140625 C 5.859375 0.140625 5.566406 0 5.390625 -0.28125 C 5.296875 -0.425781 5.226562 -0.640625 5.1875 -0.921875 C 4.945312 -0.609375 4.601562 -0.335938 4.15625 -0.109375 C 3.71875 0.117188 3.234375 0.234375 2.703125 0.234375 C 2.066406 0.234375 1.546875 0.0390625 1.140625 -0.34375 C 0.734375 -0.738281 0.53125 -1.226562 0.53125 -1.8125 C 0.53125 -2.445312 0.726562 -2.941406 1.125 -3.296875 C 1.53125 -3.648438 2.054688 -3.867188 2.703125 -3.953125 Z M 3.59375 -7.078125 Z M 3.59375 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-4"> +<path style="stroke:none;" d="M 0.84375 -6.875 L 2.03125 -6.875 L 2.03125 0 L 0.84375 0 Z M 0.84375 -9.46875 L 2.03125 -9.46875 L 2.03125 -8.15625 L 0.84375 -8.15625 Z M 0.84375 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-5"> +<path style="stroke:none;" d="M 0.84375 -6.90625 L 1.953125 -6.90625 L 1.953125 -5.921875 C 2.273438 -6.328125 2.617188 -6.617188 2.984375 -6.796875 C 3.359375 -6.972656 3.765625 -7.0625 4.203125 -7.0625 C 5.179688 -7.0625 5.847656 -6.71875 6.203125 -6.03125 C 6.390625 -5.65625 6.484375 -5.117188 6.484375 -4.421875 L 6.484375 0 L 5.296875 0 L 5.296875 -4.359375 C 5.296875 -4.773438 5.234375 -5.113281 5.109375 -5.375 C 4.898438 -5.800781 4.523438 -6.015625 3.984375 -6.015625 C 3.710938 -6.015625 3.488281 -5.988281 3.3125 -5.9375 C 3 -5.84375 2.71875 -5.648438 2.46875 -5.359375 C 2.28125 -5.128906 2.15625 -4.894531 2.09375 -4.65625 C 2.039062 -4.414062 2.015625 -4.066406 2.015625 -3.609375 L 2.015625 0 L 0.84375 0 Z M 3.578125 -7.078125 Z M 3.578125 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-6"> +<path style="stroke:none;" d="M 3.28125 -7.03125 C 3.820312 -7.03125 4.296875 -6.894531 4.703125 -6.625 C 4.921875 -6.476562 5.144531 -6.257812 5.375 -5.96875 L 5.375 -6.84375 L 6.453125 -6.84375 L 6.453125 -0.5625 C 6.453125 0.3125 6.320312 1.003906 6.0625 1.515625 C 5.582031 2.453125 4.671875 2.921875 3.328125 2.921875 C 2.585938 2.921875 1.960938 2.753906 1.453125 2.421875 C 0.953125 2.085938 0.671875 1.566406 0.609375 0.859375 L 1.78125 0.859375 C 1.84375 1.171875 1.957031 1.410156 2.125 1.578125 C 2.382812 1.828125 2.796875 1.953125 3.359375 1.953125 C 4.242188 1.953125 4.828125 1.640625 5.109375 1.015625 C 5.265625 0.648438 5.335938 -0.00390625 5.328125 -0.953125 C 5.097656 -0.609375 4.816406 -0.347656 4.484375 -0.171875 C 4.160156 -0.00390625 3.734375 0.078125 3.203125 0.078125 C 2.453125 0.078125 1.796875 -0.1875 1.234375 -0.71875 C 0.671875 -1.25 0.390625 -2.125 0.390625 -3.34375 C 0.390625 -4.5 0.671875 -5.398438 1.234375 -6.046875 C 1.804688 -6.703125 2.488281 -7.03125 3.28125 -7.03125 Z M 5.375 -3.484375 C 5.375 -4.335938 5.195312 -4.96875 4.84375 -5.375 C 4.488281 -5.789062 4.039062 -6 3.5 -6 C 2.6875 -6 2.128906 -5.617188 1.828125 -4.859375 C 1.660156 -4.441406 1.578125 -3.90625 1.578125 -3.25 C 1.578125 -2.46875 1.734375 -1.875 2.046875 -1.46875 C 2.367188 -1.0625 2.796875 -0.859375 3.328125 -0.859375 C 4.160156 -0.859375 4.75 -1.234375 5.09375 -1.984375 C 5.28125 -2.410156 5.375 -2.910156 5.375 -3.484375 Z M 3.421875 -7.078125 Z M 3.421875 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-7"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph3-8"> +<path style="stroke:none;" d="M 1.84375 -3.0625 C 1.875 -2.519531 2 -2.082031 2.21875 -1.75 C 2.644531 -1.125 3.394531 -0.8125 4.46875 -0.8125 C 4.957031 -0.8125 5.398438 -0.878906 5.796875 -1.015625 C 6.554688 -1.273438 6.9375 -1.75 6.9375 -2.4375 C 6.9375 -2.957031 6.773438 -3.328125 6.453125 -3.546875 C 6.128906 -3.765625 5.617188 -3.953125 4.921875 -4.109375 L 3.640625 -4.390625 C 2.796875 -4.585938 2.203125 -4.796875 1.859375 -5.015625 C 1.253906 -5.410156 0.953125 -6.003906 0.953125 -6.796875 C 0.953125 -7.648438 1.242188 -8.347656 1.828125 -8.890625 C 2.421875 -9.429688 3.257812 -9.703125 4.34375 -9.703125 C 5.332031 -9.703125 6.171875 -9.460938 6.859375 -8.984375 C 7.554688 -8.503906 7.90625 -7.738281 7.90625 -6.6875 L 6.703125 -6.6875 C 6.640625 -7.195312 6.503906 -7.585938 6.296875 -7.859375 C 5.898438 -8.347656 5.234375 -8.59375 4.296875 -8.59375 C 3.546875 -8.59375 3.003906 -8.429688 2.671875 -8.109375 C 2.335938 -7.796875 2.171875 -7.429688 2.171875 -7.015625 C 2.171875 -6.546875 2.363281 -6.207031 2.75 -6 C 3.007812 -5.863281 3.582031 -5.691406 4.46875 -5.484375 L 5.796875 -5.171875 C 6.441406 -5.023438 6.9375 -4.828125 7.28125 -4.578125 C 7.882812 -4.128906 8.1875 -3.488281 8.1875 -2.65625 C 8.1875 -1.601562 7.804688 -0.847656 7.046875 -0.390625 C 6.285156 0.0546875 5.398438 0.28125 4.390625 0.28125 C 3.210938 0.28125 2.289062 -0.0195312 1.625 -0.625 C 0.957031 -1.21875 0.628906 -2.03125 0.640625 -3.0625 Z M 4.4375 -9.734375 Z M 4.4375 -9.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph3-9"> +<path style="stroke:none;" d="M 3.71875 -7.0625 C 4.21875 -7.0625 4.695312 -6.945312 5.15625 -6.71875 C 5.613281 -6.488281 5.960938 -6.191406 6.203125 -5.828125 C 6.429688 -5.472656 6.585938 -5.066406 6.671875 -4.609375 C 6.734375 -4.285156 6.765625 -3.773438 6.765625 -3.078125 L 1.703125 -3.078125 C 1.722656 -2.378906 1.890625 -1.816406 2.203125 -1.390625 C 2.515625 -0.972656 2.992188 -0.765625 3.640625 -0.765625 C 4.242188 -0.765625 4.726562 -0.960938 5.09375 -1.359375 C 5.300781 -1.585938 5.445312 -1.859375 5.53125 -2.171875 L 6.671875 -2.171875 C 6.640625 -1.910156 6.539062 -1.625 6.375 -1.3125 C 6.207031 -1 6.015625 -0.742188 5.796875 -0.546875 C 5.453125 -0.203125 5.019531 0.0234375 4.5 0.140625 C 4.21875 0.210938 3.898438 0.25 3.546875 0.25 C 2.679688 0.25 1.953125 -0.0625 1.359375 -0.6875 C 0.765625 -1.3125 0.46875 -2.1875 0.46875 -3.3125 C 0.46875 -4.425781 0.765625 -5.328125 1.359375 -6.015625 C 1.960938 -6.710938 2.75 -7.0625 3.71875 -7.0625 Z M 5.578125 -4 C 5.523438 -4.5 5.414062 -4.898438 5.25 -5.203125 C 4.925781 -5.765625 4.394531 -6.046875 3.65625 -6.046875 C 3.125 -6.046875 2.675781 -5.851562 2.3125 -5.46875 C 1.945312 -5.082031 1.753906 -4.59375 1.734375 -4 Z M 3.609375 -7.078125 Z M 3.609375 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-10"> +<path style="stroke:none;" d="M 1.078125 -8.828125 L 2.25 -8.828125 L 2.25 -6.90625 L 3.359375 -6.90625 L 3.359375 -5.953125 L 2.25 -5.953125 L 2.25 -1.453125 C 2.25 -1.210938 2.332031 -1.050781 2.5 -0.96875 C 2.59375 -0.914062 2.742188 -0.890625 2.953125 -0.890625 C 3.003906 -0.890625 3.0625 -0.890625 3.125 -0.890625 C 3.195312 -0.898438 3.273438 -0.910156 3.359375 -0.921875 L 3.359375 0 C 3.222656 0.0390625 3.082031 0.0664062 2.9375 0.078125 C 2.800781 0.0976562 2.644531 0.109375 2.46875 0.109375 C 1.925781 0.109375 1.554688 -0.0234375 1.359375 -0.296875 C 1.171875 -0.578125 1.078125 -0.941406 1.078125 -1.390625 L 1.078125 -5.953125 L 0.140625 -5.953125 L 0.140625 -6.90625 L 1.078125 -6.90625 Z M 1.078125 -8.828125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-11"> +<path style="stroke:none;" d="M 3.90625 -9.625 C 3.226562 -8.3125 2.789062 -7.347656 2.59375 -6.734375 C 2.289062 -5.785156 2.140625 -4.695312 2.140625 -3.46875 C 2.140625 -2.21875 2.3125 -1.078125 2.65625 -0.046875 C 2.875 0.585938 3.296875 1.5 3.921875 2.6875 L 3.140625 2.6875 C 2.515625 1.707031 2.125 1.082031 1.96875 0.8125 C 1.820312 0.539062 1.660156 0.175781 1.484375 -0.28125 C 1.242188 -0.914062 1.078125 -1.597656 0.984375 -2.328125 C 0.941406 -2.691406 0.921875 -3.046875 0.921875 -3.390625 C 0.921875 -4.660156 1.117188 -5.789062 1.515625 -6.78125 C 1.765625 -7.414062 2.289062 -8.363281 3.09375 -9.625 Z M 3.90625 -9.625 "/> +</symbol> +<symbol overflow="visible" id="glyph3-12"> +<path style="stroke:none;" d="M 0.84375 -6.90625 L 2 -6.90625 L 2 -5.921875 C 2.269531 -6.265625 2.519531 -6.515625 2.75 -6.671875 C 3.125 -6.929688 3.554688 -7.0625 4.046875 -7.0625 C 4.597656 -7.0625 5.039062 -6.925781 5.375 -6.65625 C 5.5625 -6.5 5.734375 -6.269531 5.890625 -5.96875 C 6.148438 -6.34375 6.453125 -6.617188 6.796875 -6.796875 C 7.148438 -6.972656 7.539062 -7.0625 7.96875 -7.0625 C 8.90625 -7.0625 9.539062 -6.722656 9.875 -6.046875 C 10.050781 -5.691406 10.140625 -5.207031 10.140625 -4.59375 L 10.140625 0 L 8.9375 0 L 8.9375 -4.796875 C 8.9375 -5.253906 8.820312 -5.566406 8.59375 -5.734375 C 8.363281 -5.910156 8.082031 -6 7.75 -6 C 7.289062 -6 6.894531 -5.847656 6.5625 -5.546875 C 6.238281 -5.242188 6.078125 -4.734375 6.078125 -4.015625 L 6.078125 0 L 4.90625 0 L 4.90625 -4.5 C 4.90625 -4.96875 4.847656 -5.3125 4.734375 -5.53125 C 4.554688 -5.851562 4.226562 -6.015625 3.75 -6.015625 C 3.3125 -6.015625 2.910156 -5.84375 2.546875 -5.5 C 2.191406 -5.164062 2.015625 -4.550781 2.015625 -3.65625 L 2.015625 0 L 0.84375 0 Z M 0.84375 -6.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph3-13"> +<path style="stroke:none;" d="M 2.015625 -6.90625 L 2.015625 -2.328125 C 2.015625 -1.972656 2.066406 -1.679688 2.171875 -1.453125 C 2.378906 -1.046875 2.765625 -0.84375 3.328125 -0.84375 C 4.140625 -0.84375 4.691406 -1.203125 4.984375 -1.921875 C 5.140625 -2.304688 5.21875 -2.835938 5.21875 -3.515625 L 5.21875 -6.90625 L 6.375 -6.90625 L 6.375 0 L 5.28125 0 L 5.296875 -1.015625 C 5.148438 -0.753906 4.960938 -0.535156 4.734375 -0.359375 C 4.296875 0.00390625 3.757812 0.1875 3.125 0.1875 C 2.144531 0.1875 1.472656 -0.140625 1.109375 -0.796875 C 0.921875 -1.148438 0.828125 -1.625 0.828125 -2.21875 L 0.828125 -6.90625 Z M 3.609375 -7.078125 Z M 3.609375 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-14"> +<path style="stroke:none;" d="M 0.890625 -9.46875 L 2.046875 -9.46875 L 2.046875 0 L 0.890625 0 Z M 0.890625 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-15"> +<path style="stroke:none;" d="M 1.578125 -3.375 C 1.578125 -2.632812 1.734375 -2.015625 2.046875 -1.515625 C 2.367188 -1.015625 2.875 -0.765625 3.5625 -0.765625 C 4.101562 -0.765625 4.546875 -0.992188 4.890625 -1.453125 C 5.234375 -1.921875 5.40625 -2.585938 5.40625 -3.453125 C 5.40625 -4.316406 5.226562 -4.957031 4.875 -5.375 C 4.519531 -5.800781 4.078125 -6.015625 3.546875 -6.015625 C 2.960938 -6.015625 2.488281 -5.789062 2.125 -5.34375 C 1.757812 -4.894531 1.578125 -4.238281 1.578125 -3.375 Z M 3.328125 -7.03125 C 3.859375 -7.03125 4.300781 -6.914062 4.65625 -6.6875 C 4.863281 -6.5625 5.097656 -6.335938 5.359375 -6.015625 L 5.359375 -9.5 L 6.484375 -9.5 L 6.484375 0 L 5.4375 0 L 5.4375 -0.953125 C 5.164062 -0.535156 4.84375 -0.226562 4.46875 -0.03125 C 4.101562 0.15625 3.679688 0.25 3.203125 0.25 C 2.429688 0.25 1.765625 -0.0703125 1.203125 -0.71875 C 0.640625 -1.375 0.359375 -2.238281 0.359375 -3.3125 C 0.359375 -4.3125 0.613281 -5.179688 1.125 -5.921875 C 1.644531 -6.660156 2.378906 -7.03125 3.328125 -7.03125 Z M 3.328125 -7.03125 "/> +</symbol> +<symbol overflow="visible" id="glyph3-16"> +<path style="stroke:none;" d="M 4.640625 -1.09375 C 5.078125 -1.09375 5.4375 -1.140625 5.71875 -1.234375 C 6.207031 -1.398438 6.613281 -1.722656 6.9375 -2.203125 C 7.1875 -2.578125 7.367188 -3.066406 7.484375 -3.671875 C 7.546875 -4.023438 7.578125 -4.351562 7.578125 -4.65625 C 7.578125 -5.832031 7.34375 -6.742188 6.875 -7.390625 C 6.414062 -8.046875 5.664062 -8.375 4.625 -8.375 L 2.359375 -8.375 L 2.359375 -1.09375 Z M 1.0625 -9.46875 L 4.90625 -9.46875 C 6.207031 -9.46875 7.210938 -9.003906 7.921875 -8.078125 C 8.566406 -7.242188 8.890625 -6.175781 8.890625 -4.875 C 8.890625 -3.875 8.703125 -2.96875 8.328125 -2.15625 C 7.660156 -0.71875 6.515625 0 4.890625 0 L 1.0625 0 Z M 1.0625 -9.46875 "/> +</symbol> +<symbol overflow="visible" id="glyph3-17"> +<path style="stroke:none;" d="M 0.453125 2.6875 C 1.140625 1.363281 1.582031 0.394531 1.78125 -0.21875 C 2.082031 -1.144531 2.234375 -2.226562 2.234375 -3.46875 C 2.234375 -4.707031 2.054688 -5.84375 1.703125 -6.875 C 1.492188 -7.507812 1.070312 -8.425781 0.4375 -9.625 L 1.21875 -9.625 C 1.882812 -8.570312 2.285156 -7.921875 2.421875 -7.671875 C 2.554688 -7.421875 2.707031 -7.078125 2.875 -6.640625 C 3.082031 -6.109375 3.226562 -5.578125 3.3125 -5.046875 C 3.40625 -4.523438 3.453125 -4.023438 3.453125 -3.546875 C 3.453125 -2.265625 3.25 -1.128906 2.84375 -0.140625 C 2.59375 0.503906 2.066406 1.445312 1.265625 2.6875 Z M 0.453125 2.6875 "/> +</symbol> +</g> +<clipPath id="clip1"> + <path d="M 31.296875 204 L 231.382812 204 L 231.382812 206 L 31.296875 206 Z M 31.296875 204 "/> +</clipPath> +<clipPath id="clip2"> + <path d="M 31.296875 155 L 231.382812 155 L 231.382812 156 L 31.296875 156 Z M 31.296875 155 "/> +</clipPath> +<clipPath id="clip3"> + <path d="M 31.296875 106 L 231.382812 106 L 231.382812 107 L 31.296875 107 Z M 31.296875 106 "/> +</clipPath> +<clipPath id="clip4"> + <path d="M 31.296875 57 L 231.382812 57 L 231.382812 58 L 31.296875 58 Z M 31.296875 57 "/> +</clipPath> +<clipPath id="clip5"> + <path d="M 64 40.371094 L 66 40.371094 L 66 238.265625 L 64 238.265625 Z M 64 40.371094 "/> +</clipPath> +<clipPath id="clip6"> + <path d="M 114 40.371094 L 116 40.371094 L 116 238.265625 L 114 238.265625 Z M 114 40.371094 "/> +</clipPath> +<clipPath id="clip7"> + <path d="M 164 40.371094 L 165 40.371094 L 165 238.265625 L 164 238.265625 Z M 164 40.371094 "/> +</clipPath> +<clipPath id="clip8"> + <path d="M 213 40.371094 L 215 40.371094 L 215 238.265625 L 213 238.265625 Z M 213 40.371094 "/> +</clipPath> +<clipPath id="clip9"> + <path d="M 31.296875 228 L 231.382812 228 L 231.382812 230 L 31.296875 230 Z M 31.296875 228 "/> +</clipPath> +<clipPath id="clip10"> + <path d="M 31.296875 179 L 231.382812 179 L 231.382812 181 L 31.296875 181 Z M 31.296875 179 "/> +</clipPath> +<clipPath id="clip11"> + <path d="M 31.296875 130 L 231.382812 130 L 231.382812 132 L 31.296875 132 Z M 31.296875 130 "/> +</clipPath> +<clipPath id="clip12"> + <path d="M 31.296875 81 L 231.382812 81 L 231.382812 83 L 31.296875 83 Z M 31.296875 81 "/> +</clipPath> +<clipPath id="clip13"> + <path d="M 39 40.371094 L 41 40.371094 L 41 238.265625 L 39 238.265625 Z M 39 40.371094 "/> +</clipPath> +<clipPath id="clip14"> + <path d="M 89 40.371094 L 91 40.371094 L 91 238.265625 L 89 238.265625 Z M 89 40.371094 "/> +</clipPath> +<clipPath id="clip15"> + <path d="M 139 40.371094 L 141 40.371094 L 141 238.265625 L 139 238.265625 Z M 139 40.371094 "/> +</clipPath> +<clipPath id="clip16"> + <path d="M 188 40.371094 L 190 40.371094 L 190 238.265625 L 188 238.265625 Z M 188 40.371094 "/> +</clipPath> +<clipPath id="clip17"> + <path d="M 31.296875 40.371094 L 231.382812 40.371094 L 231.382812 238.265625 L 31.296875 238.265625 Z M 31.296875 40.371094 "/> +</clipPath> +<clipPath id="clip18"> + <path d="M 236.867188 204 L 436.953125 204 L 436.953125 206 L 236.867188 206 Z M 236.867188 204 "/> +</clipPath> +<clipPath id="clip19"> + <path d="M 236.867188 155 L 436.953125 155 L 436.953125 156 L 236.867188 156 Z M 236.867188 155 "/> +</clipPath> +<clipPath id="clip20"> + <path d="M 236.867188 106 L 436.953125 106 L 436.953125 107 L 236.867188 107 Z M 236.867188 106 "/> +</clipPath> +<clipPath id="clip21"> + <path d="M 236.867188 57 L 436.953125 57 L 436.953125 58 L 236.867188 58 Z M 236.867188 57 "/> +</clipPath> +<clipPath id="clip22"> + <path d="M 270 40.371094 L 272 40.371094 L 272 238.265625 L 270 238.265625 Z M 270 40.371094 "/> +</clipPath> +<clipPath id="clip23"> + <path d="M 320 40.371094 L 321 40.371094 L 321 238.265625 L 320 238.265625 Z M 320 40.371094 "/> +</clipPath> +<clipPath id="clip24"> + <path d="M 369 40.371094 L 371 40.371094 L 371 238.265625 L 369 238.265625 Z M 369 40.371094 "/> +</clipPath> +<clipPath id="clip25"> + <path d="M 419 40.371094 L 420 40.371094 L 420 238.265625 L 419 238.265625 Z M 419 40.371094 "/> +</clipPath> +<clipPath id="clip26"> + <path d="M 236.867188 228 L 436.953125 228 L 436.953125 230 L 236.867188 230 Z M 236.867188 228 "/> +</clipPath> +<clipPath id="clip27"> + <path d="M 236.867188 179 L 436.953125 179 L 436.953125 181 L 236.867188 181 Z M 236.867188 179 "/> +</clipPath> +<clipPath id="clip28"> + <path d="M 236.867188 130 L 436.953125 130 L 436.953125 132 L 236.867188 132 Z M 236.867188 130 "/> +</clipPath> +<clipPath id="clip29"> + <path d="M 236.867188 81 L 436.953125 81 L 436.953125 83 L 236.867188 83 Z M 236.867188 81 "/> +</clipPath> +<clipPath id="clip30"> + <path d="M 245 40.371094 L 247 40.371094 L 247 238.265625 L 245 238.265625 Z M 245 40.371094 "/> +</clipPath> +<clipPath id="clip31"> + <path d="M 295 40.371094 L 297 40.371094 L 297 238.265625 L 295 238.265625 Z M 295 40.371094 "/> +</clipPath> +<clipPath id="clip32"> + <path d="M 344 40.371094 L 346 40.371094 L 346 238.265625 L 344 238.265625 Z M 344 40.371094 "/> +</clipPath> +<clipPath id="clip33"> + <path d="M 394 40.371094 L 396 40.371094 L 396 238.265625 L 394 238.265625 Z M 394 40.371094 "/> +</clipPath> +<clipPath id="clip34"> + <path d="M 236.867188 40.371094 L 436.953125 40.371094 L 436.953125 238.265625 L 236.867188 238.265625 Z M 236.867188 40.371094 "/> +</clipPath> +<clipPath id="clip35"> + <path d="M 442.433594 204 L 642.519531 204 L 642.519531 206 L 442.433594 206 Z M 442.433594 204 "/> +</clipPath> +<clipPath id="clip36"> + <path d="M 442.433594 155 L 642.519531 155 L 642.519531 156 L 442.433594 156 Z M 442.433594 155 "/> +</clipPath> +<clipPath id="clip37"> + <path d="M 442.433594 106 L 642.519531 106 L 642.519531 107 L 442.433594 107 Z M 442.433594 106 "/> +</clipPath> +<clipPath id="clip38"> + <path d="M 442.433594 57 L 642.519531 57 L 642.519531 58 L 442.433594 58 Z M 442.433594 57 "/> +</clipPath> +<clipPath id="clip39"> + <path d="M 476 40.371094 L 477 40.371094 L 477 238.265625 L 476 238.265625 Z M 476 40.371094 "/> +</clipPath> +<clipPath id="clip40"> + <path d="M 525 40.371094 L 527 40.371094 L 527 238.265625 L 525 238.265625 Z M 525 40.371094 "/> +</clipPath> +<clipPath id="clip41"> + <path d="M 575 40.371094 L 576 40.371094 L 576 238.265625 L 575 238.265625 Z M 575 40.371094 "/> +</clipPath> +<clipPath id="clip42"> + <path d="M 624 40.371094 L 626 40.371094 L 626 238.265625 L 624 238.265625 Z M 624 40.371094 "/> +</clipPath> +<clipPath id="clip43"> + <path d="M 442.433594 228 L 642.519531 228 L 642.519531 230 L 442.433594 230 Z M 442.433594 228 "/> +</clipPath> +<clipPath id="clip44"> + <path d="M 442.433594 179 L 642.519531 179 L 642.519531 181 L 442.433594 181 Z M 442.433594 179 "/> +</clipPath> +<clipPath id="clip45"> + <path d="M 442.433594 130 L 642.519531 130 L 642.519531 132 L 442.433594 132 Z M 442.433594 130 "/> +</clipPath> +<clipPath id="clip46"> + <path d="M 442.433594 81 L 642.519531 81 L 642.519531 83 L 442.433594 83 Z M 442.433594 81 "/> +</clipPath> +<clipPath id="clip47"> + <path d="M 450 40.371094 L 453 40.371094 L 453 238.265625 L 450 238.265625 Z M 450 40.371094 "/> +</clipPath> +<clipPath id="clip48"> + <path d="M 500 40.371094 L 502 40.371094 L 502 238.265625 L 500 238.265625 Z M 500 40.371094 "/> +</clipPath> +<clipPath id="clip49"> + <path d="M 550 40.371094 L 552 40.371094 L 552 238.265625 L 550 238.265625 Z M 550 40.371094 "/> +</clipPath> +<clipPath id="clip50"> + <path d="M 599 40.371094 L 601 40.371094 L 601 238.265625 L 599 238.265625 Z M 599 40.371094 "/> +</clipPath> +<clipPath id="clip51"> + <path d="M 442.433594 40.371094 L 642.519531 40.371094 L 642.519531 238.265625 L 442.433594 238.265625 Z M 442.433594 40.371094 "/> +</clipPath> +<clipPath id="clip52"> + <path d="M 31.296875 23.347656 L 231.382812 23.347656 L 231.382812 40.375 L 31.296875 40.375 Z M 31.296875 23.347656 "/> +</clipPath> +<clipPath id="clip53"> + <path d="M 236.867188 23.347656 L 436.953125 23.347656 L 436.953125 40.375 L 236.867188 40.375 Z M 236.867188 23.347656 "/> +</clipPath> +<clipPath id="clip54"> + <path d="M 442.433594 23.347656 L 642.519531 23.347656 L 642.519531 40.375 L 442.433594 40.375 Z M 442.433594 23.347656 "/> +</clipPath> +</defs> +<g id="surface9"> +<g clip-path="url(#clip1)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 204.738281 L 231.386719 204.738281 "/> +</g> +<g clip-path="url(#clip2)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 155.675781 L 231.386719 155.675781 "/> +</g> +<g clip-path="url(#clip3)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 106.609375 L 231.386719 106.609375 "/> +</g> +<g clip-path="url(#clip4)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 57.546875 L 231.386719 57.546875 "/> +</g> +<g clip-path="url(#clip5)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.199219 238.265625 L 65.199219 40.371094 "/> +</g> +<g clip-path="url(#clip6)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.804688 238.265625 L 114.804688 40.371094 "/> +</g> +<g clip-path="url(#clip7)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.414062 238.265625 L 164.414062 40.371094 "/> +</g> +<g clip-path="url(#clip8)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.023438 238.265625 L 214.023438 40.371094 "/> +</g> +<g clip-path="url(#clip9)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 229.273438 L 231.386719 229.273438 "/> +</g> +<g clip-path="url(#clip10)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 180.207031 L 231.386719 180.207031 "/> +</g> +<g clip-path="url(#clip11)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 131.140625 L 231.386719 131.140625 "/> +</g> +<g clip-path="url(#clip12)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 82.078125 L 231.386719 82.078125 "/> +</g> +<g clip-path="url(#clip13)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.394531 238.265625 L 40.394531 40.371094 "/> +</g> +<g clip-path="url(#clip14)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.003906 238.265625 L 90.003906 40.371094 "/> +</g> +<g clip-path="url(#clip15)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.609375 238.265625 L 139.609375 40.371094 "/> +</g> +<g clip-path="url(#clip16)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.21875 238.265625 L 189.21875 40.371094 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 176.832031 79.371094 C 176.832031 81.265625 173.988281 81.265625 173.988281 79.371094 C 173.988281 77.476562 176.832031 77.476562 176.832031 79.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 173.0625 68.570312 C 173.0625 70.464844 170.21875 70.464844 170.21875 68.570312 C 170.21875 66.675781 173.0625 66.675781 173.0625 68.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 122.386719 149.78125 C 122.386719 151.675781 119.542969 151.675781 119.542969 149.78125 C 119.542969 147.886719 122.386719 147.886719 122.386719 149.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 123.492188 124.8125 C 123.492188 126.707031 120.648438 126.707031 120.648438 124.8125 C 120.648438 122.917969 123.492188 122.917969 123.492188 124.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.574219 118.179688 C 162.574219 120.074219 159.730469 120.074219 159.730469 118.179688 C 159.730469 116.285156 162.574219 116.285156 162.574219 118.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 113.535156 149.300781 C 113.535156 151.199219 110.695312 151.199219 110.695312 149.300781 C 110.695312 147.40625 113.535156 147.40625 113.535156 149.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.855469 109.273438 C 172.855469 111.167969 170.011719 111.167969 170.011719 109.273438 C 170.011719 107.378906 172.855469 107.378906 172.855469 109.273438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 103.441406 170.378906 C 103.441406 172.273438 100.597656 172.273438 100.597656 170.378906 C 100.597656 168.484375 103.441406 168.484375 103.441406 170.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.011719 112.878906 C 150.011719 114.773438 147.167969 114.773438 147.167969 112.878906 C 147.167969 110.984375 150.011719 110.984375 150.011719 112.878906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 174.183594 113.429688 C 174.183594 115.324219 171.339844 115.324219 171.339844 113.429688 C 171.339844 111.535156 174.183594 111.535156 174.183594 113.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.472656 92.929688 C 157.472656 94.824219 154.628906 94.824219 154.628906 92.929688 C 154.628906 91.035156 157.472656 91.035156 157.472656 92.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.113281 164.003906 C 125.113281 165.898438 122.273438 165.898438 122.273438 164.003906 C 122.273438 162.109375 125.113281 162.109375 125.113281 164.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.828125 106.011719 C 153.828125 107.910156 150.988281 107.910156 150.988281 106.011719 C 150.988281 104.117188 153.828125 104.117188 153.828125 106.011719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 94.550781 157.671875 C 94.550781 159.566406 91.710938 159.566406 91.710938 157.671875 C 91.710938 155.777344 94.550781 155.777344 94.550781 157.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 81.0625 184.289062 C 81.0625 186.183594 78.222656 186.183594 78.222656 184.289062 C 78.222656 182.394531 81.0625 182.394531 81.0625 184.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 147.671875 110.921875 C 147.671875 112.816406 144.832031 112.816406 144.832031 110.921875 C 144.832031 109.023438 147.671875 109.023438 147.671875 110.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 174.945312 104.710938 C 174.945312 106.605469 172.101562 106.605469 172.101562 104.710938 C 172.101562 102.816406 174.945312 102.816406 174.945312 104.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.425781 117.265625 C 158.425781 119.160156 155.582031 119.160156 155.582031 117.265625 C 155.582031 115.371094 158.425781 115.371094 158.425781 117.265625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.699219 109.628906 C 151.699219 111.523438 148.855469 111.523438 148.855469 109.628906 C 148.855469 107.734375 151.699219 107.734375 151.699219 109.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.265625 124.691406 C 128.265625 126.589844 125.425781 126.589844 125.425781 124.691406 C 125.425781 122.796875 128.265625 122.796875 128.265625 124.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 112.503906 154.839844 C 112.503906 156.734375 109.660156 156.734375 109.660156 154.839844 C 109.660156 152.945312 112.503906 152.945312 112.503906 154.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 83.910156 182.03125 C 83.910156 183.925781 81.066406 183.925781 81.066406 182.03125 C 81.066406 180.132812 83.910156 180.132812 83.910156 182.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.914062 92.921875 C 150.914062 94.816406 148.074219 94.816406 148.074219 92.921875 C 148.074219 91.027344 150.914062 91.027344 150.914062 92.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 138.554688 127.574219 C 138.554688 129.46875 135.710938 129.46875 135.710938 127.574219 C 135.710938 125.679688 138.554688 125.679688 138.554688 127.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.765625 98.179688 C 146.765625 100.074219 143.921875 100.074219 143.921875 98.179688 C 143.921875 96.285156 146.765625 96.285156 146.765625 98.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 98.003906 181.472656 C 98.003906 183.367188 95.160156 183.367188 95.160156 181.472656 C 95.160156 179.578125 98.003906 179.578125 98.003906 181.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 183.863281 77.003906 C 183.863281 78.898438 181.019531 78.898438 181.019531 77.003906 C 181.019531 75.109375 183.863281 75.109375 183.863281 77.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 110.898438 144.324219 C 110.898438 146.222656 108.054688 146.222656 108.054688 144.324219 C 108.054688 142.429688 110.898438 142.429688 110.898438 144.324219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 129.027344 118.664062 C 129.027344 120.558594 126.183594 120.558594 126.183594 118.664062 C 126.183594 116.769531 129.027344 116.769531 129.027344 118.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 159.570312 106.777344 C 159.570312 108.671875 156.726562 108.671875 156.726562 106.777344 C 156.726562 104.882812 159.570312 104.882812 159.570312 106.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 154.664062 114.195312 C 154.664062 116.089844 151.824219 116.089844 151.824219 114.195312 C 151.824219 112.300781 154.664062 112.300781 154.664062 114.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 107.902344 159.035156 C 107.902344 160.929688 105.058594 160.929688 105.058594 159.035156 C 105.058594 157.136719 107.902344 157.136719 107.902344 159.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.582031 88.59375 C 168.582031 90.488281 165.738281 90.488281 165.738281 88.59375 C 165.738281 86.699219 168.582031 86.699219 168.582031 88.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 171.90625 101.847656 C 171.90625 103.742188 169.0625 103.742188 169.0625 101.847656 C 169.0625 99.953125 171.90625 99.953125 171.90625 101.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 100.714844 169.621094 C 100.714844 171.515625 97.875 171.515625 97.875 169.621094 C 97.875 167.726562 100.714844 167.726562 100.714844 169.621094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.101562 100.660156 C 126.101562 102.554688 123.261719 102.554688 123.261719 100.660156 C 123.261719 98.765625 126.101562 98.765625 126.101562 100.660156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 182.609375 103.964844 C 182.609375 105.859375 179.765625 105.859375 179.765625 103.964844 C 179.765625 102.070312 182.609375 102.070312 182.609375 103.964844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 100.257812 153.054688 C 100.257812 154.953125 97.414062 154.953125 97.414062 153.054688 C 97.414062 151.160156 100.257812 151.160156 100.257812 153.054688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 99.816406 182.804688 C 99.816406 184.699219 96.972656 184.699219 96.972656 182.804688 C 96.972656 180.910156 99.816406 180.910156 99.816406 182.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 121.679688 130.058594 C 121.679688 131.953125 118.839844 131.953125 118.839844 130.058594 C 118.839844 128.164062 121.679688 128.164062 121.679688 130.058594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 161.316406 107.5 C 161.316406 109.394531 158.472656 109.394531 158.472656 107.5 C 158.472656 105.605469 161.316406 105.605469 161.316406 107.5 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 123.257812 148.996094 C 123.257812 150.890625 120.414062 150.890625 120.414062 148.996094 C 120.414062 147.101562 123.257812 147.101562 123.257812 148.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.03125 123.417969 C 116.03125 125.3125 113.1875 125.3125 113.1875 123.417969 C 113.1875 121.523438 116.03125 121.523438 116.03125 123.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.835938 164.488281 C 97.835938 166.386719 94.992188 166.386719 94.992188 164.488281 C 94.992188 162.59375 97.835938 162.59375 97.835938 164.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.351562 171.449219 C 116.351562 173.34375 113.507812 173.34375 113.507812 171.449219 C 113.507812 169.554688 116.351562 169.554688 116.351562 171.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 86.632812 159.417969 C 86.632812 161.316406 83.792969 161.316406 83.792969 159.417969 C 83.792969 157.523438 86.632812 157.523438 86.632812 159.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 216.839844 79.414062 C 216.839844 81.308594 213.996094 81.308594 213.996094 79.414062 C 213.996094 77.515625 216.839844 77.515625 216.839844 79.414062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 121.324219 141.777344 C 121.324219 143.671875 118.480469 143.671875 118.480469 141.777344 C 118.480469 139.882812 121.324219 139.882812 121.324219 141.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 137.613281 109.65625 C 137.613281 111.550781 134.769531 111.550781 134.769531 109.65625 C 134.769531 107.761719 137.613281 107.761719 137.613281 109.65625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 127.277344 112.167969 C 127.277344 114.0625 124.4375 114.0625 124.4375 112.167969 C 124.4375 110.273438 127.277344 110.273438 127.277344 112.167969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 96.027344 147.097656 C 96.027344 148.992188 93.183594 148.992188 93.183594 147.097656 C 93.183594 145.203125 96.027344 145.203125 96.027344 147.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.800781 183.640625 C 115.800781 185.539062 112.957031 185.539062 112.957031 183.640625 C 112.957031 181.746094 115.800781 181.746094 115.800781 183.640625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 108.90625 143.277344 C 108.90625 145.171875 106.0625 145.171875 106.0625 143.277344 C 106.0625 141.382812 108.90625 141.382812 108.90625 143.277344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 181.535156 104.769531 C 181.535156 106.664062 178.691406 106.664062 178.691406 104.769531 C 178.691406 102.875 181.535156 102.875 181.535156 104.769531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.996094 138.171875 C 116.996094 140.066406 114.152344 140.066406 114.152344 138.171875 C 114.152344 136.277344 116.996094 136.277344 116.996094 138.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 186.527344 90.324219 C 186.527344 92.21875 183.6875 92.21875 183.6875 90.324219 C 183.6875 88.429688 186.527344 88.429688 186.527344 90.324219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.386719 102.355469 C 169.386719 104.25 166.546875 104.25 166.546875 102.355469 C 166.546875 100.460938 169.386719 100.460938 169.386719 102.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 177.292969 85.035156 C 177.292969 86.929688 174.449219 86.929688 174.449219 85.035156 C 174.449219 83.136719 177.292969 83.136719 177.292969 85.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 109.734375 141.714844 C 109.734375 143.609375 106.890625 143.609375 106.890625 141.714844 C 106.890625 139.816406 109.734375 139.816406 109.734375 141.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 148.671875 107.527344 C 148.671875 109.421875 145.832031 109.421875 145.832031 107.527344 C 145.832031 105.632812 148.671875 105.632812 148.671875 107.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 159.246094 83.214844 C 159.246094 85.109375 156.402344 85.109375 156.402344 83.214844 C 156.402344 81.320312 159.246094 81.320312 159.246094 83.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 156.96875 104.921875 C 156.96875 106.816406 154.125 106.816406 154.125 104.921875 C 154.125 103.027344 156.96875 103.027344 156.96875 104.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 181.148438 109.867188 C 181.148438 111.761719 178.304688 111.761719 178.304688 109.867188 C 178.304688 107.96875 181.148438 107.96875 181.148438 109.867188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.34375 95.027344 C 168.34375 96.925781 165.5 96.925781 165.5 95.027344 C 165.5 93.132812 168.34375 93.132812 168.34375 95.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 170.503906 95.148438 C 170.503906 97.042969 167.664062 97.042969 167.664062 95.148438 C 167.664062 93.253906 170.503906 93.253906 170.503906 95.148438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 119.296875 142.480469 C 119.296875 144.375 116.457031 144.375 116.457031 142.480469 C 116.457031 140.585938 119.296875 140.585938 119.296875 142.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.234375 132.472656 C 116.234375 134.367188 113.390625 134.367188 113.390625 132.472656 C 113.390625 130.578125 116.234375 130.578125 116.234375 132.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 99.730469 172.753906 C 99.730469 174.648438 96.890625 174.648438 96.890625 172.753906 C 96.890625 170.859375 99.730469 170.859375 99.730469 172.753906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 152.652344 110.933594 C 152.652344 112.828125 149.808594 112.828125 149.808594 110.933594 C 149.808594 109.039062 152.652344 109.039062 152.652344 110.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 93.238281 173.789062 C 93.238281 175.683594 90.394531 175.683594 90.394531 173.789062 C 90.394531 171.894531 93.238281 171.894531 93.238281 173.789062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 109.082031 129.882812 C 109.082031 131.777344 106.238281 131.777344 106.238281 129.882812 C 106.238281 127.988281 109.082031 127.988281 109.082031 129.882812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 101.101562 152.453125 C 101.101562 154.347656 98.261719 154.347656 98.261719 152.453125 C 98.261719 150.554688 101.101562 150.554688 101.101562 152.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 102.699219 132.765625 C 102.699219 134.660156 99.855469 134.660156 99.855469 132.765625 C 99.855469 130.871094 102.699219 130.871094 102.699219 132.765625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.324219 92.148438 C 151.324219 94.042969 148.484375 94.042969 148.484375 92.148438 C 148.484375 90.253906 151.324219 90.253906 151.324219 92.148438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 118.707031 136.242188 C 118.707031 138.140625 115.863281 138.140625 115.863281 136.242188 C 115.863281 134.347656 118.707031 134.347656 118.707031 136.242188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 123.878906 168.792969 C 123.878906 170.6875 121.035156 170.6875 121.035156 168.792969 C 121.035156 166.898438 123.878906 166.898438 123.878906 168.792969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.648438 141.449219 C 115.648438 143.347656 112.808594 143.347656 112.808594 141.449219 C 112.808594 139.554688 115.648438 139.554688 115.648438 141.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.867188 116.410156 C 116.867188 118.304688 114.023438 118.304688 114.023438 116.410156 C 114.023438 114.515625 116.867188 114.515625 116.867188 116.410156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 107.640625 140.398438 C 107.640625 142.292969 104.800781 142.292969 104.800781 140.398438 C 104.800781 138.503906 107.640625 138.503906 107.640625 140.398438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 166.941406 109.363281 C 166.941406 111.257812 164.097656 111.257812 164.097656 109.363281 C 164.097656 107.464844 166.941406 107.464844 166.941406 109.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.519531 93.421875 C 158.519531 95.316406 155.675781 95.316406 155.675781 93.421875 C 155.675781 91.527344 158.519531 91.527344 158.519531 93.421875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 187.335938 76.753906 C 187.335938 78.648438 184.496094 78.648438 184.496094 76.753906 C 184.496094 74.859375 187.335938 74.859375 187.335938 76.753906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 193.726562 86.03125 C 193.726562 87.925781 190.886719 87.925781 190.886719 86.03125 C 190.886719 84.136719 193.726562 84.136719 193.726562 86.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.207031 95.523438 C 155.207031 97.417969 152.363281 97.417969 152.363281 95.523438 C 152.363281 93.625 155.207031 93.625 155.207031 95.523438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.414062 105.648438 C 133.414062 107.542969 130.570312 107.542969 130.570312 105.648438 C 130.570312 103.75 133.414062 103.75 133.414062 105.648438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 178.378906 73.699219 C 178.378906 75.59375 175.535156 75.59375 175.535156 73.699219 C 175.535156 71.804688 178.378906 71.804688 178.378906 73.699219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.542969 138.253906 C 128.542969 140.148438 125.699219 140.148438 125.699219 138.253906 C 125.699219 136.359375 128.542969 136.359375 128.542969 138.253906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.953125 134.746094 C 115.953125 136.640625 113.113281 136.640625 113.113281 134.746094 C 113.113281 132.851562 115.953125 132.851562 115.953125 134.746094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.789062 107.378906 C 160.789062 109.273438 157.945312 109.273438 157.945312 107.378906 C 157.945312 105.484375 160.789062 105.484375 160.789062 107.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.253906 102.488281 C 157.253906 104.382812 154.410156 104.382812 154.410156 102.488281 C 154.410156 100.59375 157.253906 100.59375 157.253906 102.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.675781 114.648438 C 145.675781 116.542969 142.835938 116.542969 142.835938 114.648438 C 142.835938 112.753906 145.675781 112.753906 145.675781 114.648438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.949219 106.933594 C 125.949219 108.828125 123.109375 108.828125 123.109375 106.933594 C 123.109375 105.039062 125.949219 105.039062 125.949219 106.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 107.925781 149.824219 C 107.925781 151.71875 105.082031 151.71875 105.082031 149.824219 C 105.082031 147.925781 107.925781 147.925781 107.925781 149.824219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 186.507812 78.960938 C 186.507812 80.855469 183.664062 80.855469 183.664062 78.960938 C 183.664062 77.0625 186.507812 77.0625 186.507812 78.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.472656 164.429688 C 115.472656 166.324219 112.628906 166.324219 112.628906 164.429688 C 112.628906 162.535156 115.472656 162.535156 115.472656 164.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.335938 107.710938 C 151.335938 109.605469 148.492188 109.605469 148.492188 107.710938 C 148.492188 105.816406 151.335938 105.816406 151.335938 107.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.042969 96.027344 C 150.042969 97.921875 147.199219 97.921875 147.199219 96.027344 C 147.199219 94.128906 150.042969 94.128906 150.042969 96.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 166.507812 99.542969 C 166.507812 101.4375 163.664062 101.4375 163.664062 99.542969 C 163.664062 97.648438 166.507812 97.648438 166.507812 99.542969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 148.566406 120.03125 C 148.566406 121.925781 145.722656 121.925781 145.722656 120.03125 C 145.722656 118.136719 148.566406 118.136719 148.566406 120.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.863281 88.246094 C 146.863281 90.140625 144.019531 90.140625 144.019531 88.246094 C 144.019531 86.351562 146.863281 86.351562 146.863281 88.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 111.621094 144.136719 C 111.621094 146.03125 108.777344 146.03125 108.777344 144.136719 C 108.777344 142.242188 111.621094 142.242188 111.621094 144.136719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.941406 139.214844 C 116.941406 141.109375 114.097656 141.109375 114.097656 139.214844 C 114.097656 137.320312 116.941406 137.320312 116.941406 139.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 176.875 101.117188 C 176.875 103.015625 174.03125 103.015625 174.03125 101.117188 C 174.03125 99.222656 176.875 99.222656 176.875 101.117188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 167.425781 107.0625 C 167.425781 108.960938 164.585938 108.960938 164.585938 107.0625 C 164.585938 105.167969 167.425781 105.167969 167.425781 107.0625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 111.304688 143.660156 C 111.304688 145.554688 108.460938 145.554688 108.460938 143.660156 C 108.460938 141.765625 111.304688 141.765625 111.304688 143.660156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.421875 169.570312 C 115.421875 171.464844 112.578125 171.464844 112.578125 169.570312 C 112.578125 167.675781 115.421875 167.675781 115.421875 169.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.671875 104.761719 C 158.671875 106.65625 155.832031 106.65625 155.832031 104.761719 C 155.832031 102.867188 158.671875 102.867188 158.671875 104.761719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 161.5 84.382812 C 161.5 86.277344 158.65625 86.277344 158.65625 84.382812 C 158.65625 82.488281 161.5 82.488281 161.5 84.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.367188 115.035156 C 142.367188 116.929688 139.523438 116.929688 139.523438 115.035156 C 139.523438 113.140625 142.367188 113.140625 142.367188 115.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 81.890625 171.734375 C 81.890625 173.628906 79.046875 173.628906 79.046875 171.734375 C 79.046875 169.839844 81.890625 169.839844 81.890625 171.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 107.539062 145.617188 C 107.539062 147.511719 104.695312 147.511719 104.695312 145.617188 C 104.695312 143.722656 107.539062 143.722656 107.539062 145.617188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.433594 84.332031 C 146.433594 86.226562 143.59375 86.226562 143.59375 84.332031 C 143.59375 82.433594 146.433594 82.433594 146.433594 84.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 97.25 184.023438 C 97.25 185.917969 94.40625 185.917969 94.40625 184.023438 C 94.40625 182.128906 97.25 182.128906 97.25 184.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 170.023438 67.226562 C 170.023438 69.121094 167.179688 69.121094 167.179688 67.226562 C 167.179688 65.328125 170.023438 65.328125 170.023438 67.226562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 115.71875 145.847656 C 115.71875 147.742188 112.875 147.742188 112.875 145.847656 C 112.875 143.953125 115.71875 143.953125 115.71875 145.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.160156 102.925781 C 160.160156 104.820312 157.320312 104.820312 157.320312 102.925781 C 157.320312 101.03125 160.160156 101.03125 160.160156 102.925781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.683594 88.480469 C 143.683594 90.378906 140.839844 90.378906 140.839844 88.480469 C 140.839844 86.585938 143.683594 86.585938 143.683594 88.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 116.144531 125.300781 C 116.144531 127.195312 113.300781 127.195312 113.300781 125.300781 C 113.300781 123.40625 116.144531 123.40625 116.144531 125.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.578125 69.722656 C 172.578125 71.617188 169.734375 71.617188 169.734375 69.722656 C 169.734375 67.828125 172.578125 67.828125 172.578125 69.722656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 188.285156 110.339844 C 188.285156 112.234375 185.441406 112.234375 185.441406 110.339844 C 185.441406 108.445312 188.285156 108.445312 188.285156 110.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 134.738281 109.09375 C 134.738281 110.988281 131.894531 110.988281 131.894531 109.09375 C 131.894531 107.199219 134.738281 107.199219 134.738281 109.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.824219 117.695312 C 145.824219 119.589844 142.980469 119.589844 142.980469 117.695312 C 142.980469 115.800781 145.824219 115.800781 145.824219 117.695312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 165.269531 124.371094 C 165.269531 126.265625 162.429688 126.265625 162.429688 124.371094 C 162.429688 122.476562 165.269531 122.476562 165.269531 124.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.5 118.199219 C 168.5 120.09375 165.65625 120.09375 165.65625 118.199219 C 165.65625 116.304688 168.5 116.304688 168.5 118.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 167.527344 126.621094 C 167.527344 128.515625 164.683594 128.515625 164.683594 126.621094 C 164.683594 124.726562 167.527344 124.726562 167.527344 126.621094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.828125 134.777344 C 158.828125 136.675781 155.984375 136.675781 155.984375 134.777344 C 155.984375 132.882812 158.828125 132.882812 158.828125 134.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.503906 117.707031 C 162.503906 119.601562 159.660156 119.601562 159.660156 117.707031 C 159.660156 115.808594 162.503906 115.808594 162.503906 117.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.152344 135.964844 C 141.152344 137.859375 138.308594 137.859375 138.308594 135.964844 C 138.308594 134.070312 141.152344 134.070312 141.152344 135.964844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.503906 121.570312 C 146.503906 123.464844 143.660156 123.464844 143.660156 121.570312 C 143.660156 119.671875 146.503906 119.671875 146.503906 121.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.289062 134.097656 C 169.289062 135.992188 166.445312 135.992188 166.445312 134.097656 C 166.445312 132.203125 169.289062 132.203125 169.289062 134.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.902344 137.074219 C 151.902344 138.96875 149.058594 138.96875 149.058594 137.074219 C 149.058594 135.179688 151.902344 135.179688 151.902344 137.074219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.691406 132.234375 C 133.691406 134.128906 130.851562 134.128906 130.851562 132.234375 C 130.851562 130.339844 133.691406 130.339844 133.691406 132.234375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.621094 130.191406 C 153.621094 132.089844 150.78125 132.089844 150.78125 130.191406 C 150.78125 128.296875 153.621094 128.296875 153.621094 130.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.988281 139.453125 C 149.988281 141.347656 147.144531 141.347656 147.144531 139.453125 C 147.144531 137.554688 149.988281 137.554688 149.988281 139.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 150.863281 136.714844 C 150.863281 138.609375 148.019531 138.609375 148.019531 136.714844 C 148.019531 134.820312 150.863281 134.820312 150.863281 136.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 186.210938 136.960938 C 186.210938 138.855469 183.367188 138.855469 183.367188 136.960938 C 183.367188 135.066406 186.210938 135.066406 186.210938 136.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.480469 126.449219 C 149.480469 128.34375 146.636719 128.34375 146.636719 126.449219 C 146.636719 124.554688 149.480469 124.554688 149.480469 126.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 139.613281 103.59375 C 139.613281 105.488281 136.769531 105.488281 136.769531 103.59375 C 136.769531 101.699219 139.613281 101.699219 139.613281 103.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136 135.386719 C 136 137.285156 133.160156 137.285156 133.160156 135.386719 C 133.160156 133.492188 136 133.492188 136 135.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.753906 148.804688 C 151.753906 150.699219 148.910156 150.699219 148.910156 148.804688 C 148.910156 146.90625 151.753906 146.90625 151.753906 148.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 173.539062 120.84375 C 173.539062 122.738281 170.695312 122.738281 170.695312 120.84375 C 170.695312 118.949219 173.539062 118.949219 173.539062 120.84375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 124.675781 139.078125 C 124.675781 140.972656 121.835938 140.972656 121.835938 139.078125 C 121.835938 137.183594 124.675781 137.183594 124.675781 139.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.074219 115.847656 C 153.074219 117.742188 150.234375 117.742188 150.234375 115.847656 C 150.234375 113.953125 153.074219 113.953125 153.074219 115.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.792969 145.289062 C 143.792969 147.1875 140.949219 147.1875 140.949219 145.289062 C 140.949219 143.394531 143.792969 143.394531 143.792969 145.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.320312 162.074219 C 131.320312 163.96875 128.476562 163.96875 128.476562 162.074219 C 128.476562 160.179688 131.320312 160.179688 131.320312 162.074219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.238281 148.460938 C 144.238281 150.359375 141.398438 150.359375 141.398438 148.460938 C 141.398438 146.566406 144.238281 146.566406 144.238281 148.460938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 121.394531 109.023438 C 121.394531 110.917969 118.550781 110.917969 118.550781 109.023438 C 118.550781 107.128906 121.394531 107.128906 121.394531 109.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 188.109375 116.519531 C 188.109375 118.414062 185.265625 118.414062 185.265625 116.519531 C 185.265625 114.625 188.109375 114.625 188.109375 116.519531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.546875 118.25 C 158.546875 120.144531 155.703125 120.144531 155.703125 118.25 C 155.703125 116.355469 158.546875 116.355469 158.546875 118.25 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 162.882812 121.953125 C 162.882812 123.847656 160.039062 123.847656 160.039062 121.953125 C 160.039062 120.054688 162.882812 120.054688 162.882812 121.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 173.472656 131.816406 C 173.472656 133.710938 170.632812 133.710938 170.632812 131.816406 C 170.632812 129.921875 173.472656 129.921875 173.472656 131.816406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.226562 137.679688 C 128.226562 139.574219 125.382812 139.574219 125.382812 137.679688 C 125.382812 135.785156 128.226562 135.785156 128.226562 137.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 178.363281 119.894531 C 178.363281 121.789062 175.519531 121.789062 175.519531 119.894531 C 175.519531 118 178.363281 118 178.363281 119.894531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.484375 117.691406 C 151.484375 119.589844 148.640625 119.589844 148.640625 117.691406 C 148.640625 115.796875 151.484375 115.796875 151.484375 117.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 130.105469 152.078125 C 130.105469 153.972656 127.261719 153.972656 127.261719 152.078125 C 127.261719 150.183594 130.105469 150.183594 130.105469 152.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.539062 120.316406 C 133.539062 122.210938 130.699219 122.210938 130.699219 120.316406 C 130.699219 118.421875 133.539062 118.421875 133.539062 120.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 134.316406 131.335938 C 134.316406 133.234375 131.472656 133.234375 131.472656 131.335938 C 131.472656 129.441406 134.316406 129.441406 134.316406 131.335938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 122.449219 141.765625 C 122.449219 143.660156 119.605469 143.660156 119.605469 141.765625 C 119.605469 139.871094 122.449219 139.871094 122.449219 141.765625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.300781 135.996094 C 136.300781 137.890625 133.457031 137.890625 133.457031 135.996094 C 133.457031 134.101562 136.300781 134.101562 136.300781 135.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 158.726562 122.246094 C 158.726562 124.144531 155.882812 124.144531 155.882812 122.246094 C 155.882812 120.351562 158.726562 120.351562 158.726562 122.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 111.71875 122.945312 C 111.71875 124.84375 108.875 124.84375 108.875 122.945312 C 108.875 121.050781 111.71875 121.050781 111.71875 122.945312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.898438 140.953125 C 155.898438 142.847656 153.058594 142.847656 153.058594 140.953125 C 153.058594 139.058594 155.898438 139.058594 155.898438 140.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 139.9375 152.585938 C 139.9375 154.480469 137.09375 154.480469 137.09375 152.585938 C 137.09375 150.691406 139.9375 150.691406 139.9375 152.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.660156 131.664062 C 160.660156 133.558594 157.820312 133.558594 157.820312 131.664062 C 157.820312 129.765625 160.660156 129.765625 160.660156 131.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.316406 152.257812 C 128.316406 154.152344 125.472656 154.152344 125.472656 152.257812 C 125.472656 150.363281 128.316406 150.363281 128.316406 152.257812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.414062 141.09375 C 133.414062 142.988281 130.570312 142.988281 130.570312 141.09375 C 130.570312 139.199219 133.414062 139.199219 133.414062 141.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 145.867188 135.890625 C 145.867188 137.785156 143.023438 137.785156 143.023438 135.890625 C 143.023438 133.996094 145.867188 133.996094 145.867188 135.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 132.574219 126.875 C 132.574219 128.769531 129.734375 128.769531 129.734375 126.875 C 129.734375 124.980469 132.574219 124.980469 132.574219 126.875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 155.757812 132.285156 C 155.757812 134.179688 152.917969 134.179688 152.917969 132.285156 C 152.917969 130.390625 155.757812 130.390625 155.757812 132.285156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 147.304688 134.058594 C 147.304688 135.953125 144.460938 135.953125 144.460938 134.058594 C 144.460938 132.164062 147.304688 132.164062 147.304688 134.058594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 137.402344 181.4375 C 137.402344 183.335938 134.558594 183.335938 134.558594 181.4375 C 134.558594 179.542969 137.402344 179.542969 137.402344 181.4375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.585938 113.292969 C 133.585938 115.1875 130.742188 115.1875 130.742188 113.292969 C 130.742188 111.398438 133.585938 111.398438 133.585938 113.292969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 132.980469 126.992188 C 132.980469 128.886719 130.140625 128.886719 130.140625 126.992188 C 130.140625 125.097656 132.980469 125.097656 132.980469 126.992188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 192.339844 115.476562 C 192.339844 117.371094 189.496094 117.371094 189.496094 115.476562 C 189.496094 113.582031 192.339844 113.582031 192.339844 115.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 138.621094 111.878906 C 138.621094 113.773438 135.78125 113.773438 135.78125 111.878906 C 135.78125 109.984375 138.621094 109.984375 138.621094 111.878906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 135.3125 132 C 135.3125 133.894531 132.472656 133.894531 132.472656 132 C 132.472656 130.105469 135.3125 130.105469 135.3125 132 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.65625 117.441406 C 172.65625 119.335938 169.816406 119.335938 169.816406 117.441406 C 169.816406 115.542969 172.65625 115.542969 172.65625 117.441406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 134.894531 135.234375 C 134.894531 137.132812 132.054688 137.132812 132.054688 135.234375 C 132.054688 133.339844 134.894531 133.339844 134.894531 135.234375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.945312 134.734375 C 143.945312 136.628906 141.101562 136.628906 141.101562 134.734375 C 141.101562 132.835938 143.945312 132.835938 143.945312 134.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.917969 153.921875 C 136.917969 155.816406 134.074219 155.816406 134.074219 153.921875 C 134.074219 152.023438 136.917969 152.023438 136.917969 153.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.957031 113.429688 C 168.957031 115.324219 166.113281 115.324219 166.113281 113.429688 C 166.113281 111.535156 168.957031 111.535156 168.957031 113.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 129.589844 137.035156 C 129.589844 138.929688 126.746094 138.929688 126.746094 137.035156 C 126.746094 135.136719 129.589844 135.136719 129.589844 137.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.046875 120.785156 C 151.046875 122.679688 148.203125 122.679688 148.203125 120.785156 C 148.203125 118.886719 151.046875 118.886719 151.046875 120.785156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.449219 124.304688 C 149.449219 126.199219 146.605469 126.199219 146.605469 124.304688 C 146.605469 122.410156 149.449219 122.410156 149.449219 124.304688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.304688 129.339844 C 157.304688 131.238281 154.464844 131.238281 154.464844 129.339844 C 154.464844 127.445312 157.304688 127.445312 157.304688 129.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.753906 134.6875 C 151.753906 136.582031 148.910156 136.582031 148.910156 134.6875 C 148.910156 132.792969 151.753906 132.792969 151.753906 134.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 147.699219 124.988281 C 147.699219 126.882812 144.855469 126.882812 144.855469 124.988281 C 144.855469 123.089844 147.699219 123.089844 147.699219 124.988281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 121.234375 125.390625 C 121.234375 127.285156 118.390625 127.285156 118.390625 125.390625 C 118.390625 123.496094 121.234375 123.496094 121.234375 125.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.488281 139.554688 C 157.488281 141.449219 154.644531 141.449219 154.644531 139.554688 C 154.644531 137.660156 157.488281 137.660156 157.488281 139.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 168.378906 117.175781 C 168.378906 119.070312 165.535156 119.070312 165.535156 117.175781 C 165.535156 115.277344 168.378906 115.277344 168.378906 117.175781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 163.226562 140.007812 C 163.226562 141.90625 160.382812 141.90625 160.382812 140.007812 C 160.382812 138.113281 163.226562 138.113281 163.226562 140.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.046875 120.667969 C 140.046875 122.5625 137.203125 122.5625 137.203125 120.667969 C 137.203125 118.773438 140.046875 118.773438 140.046875 120.667969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 133.230469 157.429688 C 133.230469 159.324219 130.390625 159.324219 130.390625 157.429688 C 130.390625 155.535156 133.230469 155.535156 133.230469 157.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.957031 132.75 C 172.957031 134.644531 170.113281 134.644531 170.113281 132.75 C 170.113281 130.855469 172.957031 130.855469 172.957031 132.75 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.6875 175.34375 C 125.6875 177.242188 122.847656 177.242188 122.847656 175.34375 C 122.847656 173.449219 125.6875 173.449219 125.6875 175.34375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.3125 130.203125 C 131.3125 132.097656 128.46875 132.097656 128.46875 130.203125 C 128.46875 128.308594 131.3125 128.308594 131.3125 130.203125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 120.566406 156.671875 C 120.566406 158.566406 117.722656 158.566406 117.722656 156.671875 C 117.722656 154.777344 120.566406 154.777344 120.566406 156.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 125.742188 152.6875 C 125.742188 154.582031 122.898438 154.582031 122.898438 152.6875 C 122.898438 150.792969 125.742188 150.792969 125.742188 152.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 140.125 160.109375 C 140.125 162.003906 137.28125 162.003906 137.28125 160.109375 C 137.28125 158.210938 140.125 158.210938 140.125 160.109375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 141.601562 113.066406 C 141.601562 114.964844 138.757812 114.964844 138.757812 113.066406 C 138.757812 111.171875 141.601562 111.171875 141.601562 113.066406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 124.558594 129.984375 C 124.558594 131.878906 121.71875 131.878906 121.71875 129.984375 C 121.71875 128.085938 124.558594 128.085938 124.558594 129.984375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 135.746094 144.554688 C 135.746094 146.449219 132.902344 146.449219 132.902344 144.554688 C 132.902344 142.660156 135.746094 142.660156 135.746094 144.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 139.472656 149.089844 C 139.472656 150.984375 136.628906 150.984375 136.628906 149.089844 C 136.628906 147.195312 139.472656 147.195312 139.472656 149.089844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 157.550781 144.574219 C 157.550781 146.46875 154.710938 146.46875 154.710938 144.574219 C 154.710938 142.679688 157.550781 142.679688 157.550781 144.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 161.863281 134.15625 C 161.863281 136.050781 159.019531 136.050781 159.019531 134.15625 C 159.019531 132.261719 161.863281 132.261719 161.863281 134.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.691406 123.71875 C 151.691406 125.613281 148.847656 125.613281 148.847656 123.71875 C 148.847656 121.824219 151.691406 121.824219 151.691406 123.71875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.984375 142.152344 C 146.984375 144.046875 144.140625 144.046875 144.140625 142.152344 C 144.140625 140.257812 146.984375 140.257812 146.984375 142.152344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.378906 120.890625 C 160.378906 122.789062 157.535156 122.789062 157.535156 120.890625 C 157.535156 118.996094 160.378906 118.996094 160.378906 120.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 194.203125 116.296875 C 194.203125 118.191406 191.363281 118.191406 191.363281 116.296875 C 191.363281 114.402344 194.203125 114.402344 194.203125 116.296875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.832031 130.222656 C 144.832031 132.121094 141.988281 132.121094 141.988281 130.222656 C 141.988281 128.328125 144.832031 128.328125 144.832031 130.222656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 126.054688 133.472656 C 126.054688 135.367188 123.214844 135.367188 123.214844 133.472656 C 123.214844 131.578125 126.054688 131.578125 126.054688 133.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 142.414062 145.09375 C 142.414062 146.988281 139.574219 146.988281 139.574219 145.09375 C 139.574219 143.195312 142.414062 143.195312 142.414062 145.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 130.800781 143.191406 C 130.800781 145.085938 127.957031 145.085938 127.957031 143.191406 C 127.957031 141.296875 130.800781 141.296875 130.800781 143.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 144.5625 121.898438 C 144.5625 123.792969 141.71875 123.792969 141.71875 121.898438 C 141.71875 120.003906 144.5625 120.003906 144.5625 121.898438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.644531 131.941406 C 149.644531 133.835938 146.804688 133.835938 146.804688 131.941406 C 146.804688 130.046875 149.644531 130.046875 149.644531 131.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 177.734375 120.800781 C 177.734375 122.695312 174.890625 122.695312 174.890625 120.800781 C 174.890625 118.90625 177.734375 118.90625 177.734375 120.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 154.804688 127.082031 C 154.804688 128.976562 151.960938 128.976562 151.960938 127.082031 C 151.960938 125.1875 154.804688 125.1875 154.804688 127.082031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 129.722656 137.59375 C 129.722656 139.488281 126.878906 139.488281 126.878906 137.59375 C 126.878906 135.699219 129.722656 135.699219 129.722656 137.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.304688 126.828125 C 160.304688 128.722656 157.460938 128.722656 157.460938 126.828125 C 157.460938 124.933594 160.304688 124.933594 160.304688 126.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 138.65625 160.382812 C 138.65625 162.277344 135.8125 162.277344 135.8125 160.382812 C 135.8125 158.488281 138.65625 158.488281 138.65625 160.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 184.714844 122.039062 C 184.714844 123.933594 181.871094 123.933594 181.871094 122.039062 C 181.871094 120.140625 184.714844 120.140625 184.714844 122.039062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.449219 130.246094 C 131.449219 132.140625 128.605469 132.140625 128.605469 130.246094 C 128.605469 128.351562 131.449219 128.351562 131.449219 130.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.289062 153.363281 C 128.289062 155.257812 125.449219 155.257812 125.449219 153.363281 C 125.449219 151.46875 128.289062 151.46875 128.289062 153.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 167.554688 129.171875 C 167.554688 131.066406 164.710938 131.066406 164.710938 129.171875 C 164.710938 127.277344 167.554688 127.277344 167.554688 129.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.953125 143.398438 C 153.953125 145.296875 151.109375 145.296875 151.109375 143.398438 C 151.109375 141.503906 153.953125 141.503906 153.953125 143.398438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.90625 153.023438 C 136.90625 154.917969 134.0625 154.917969 134.0625 153.023438 C 134.0625 151.128906 136.90625 151.128906 136.90625 153.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 167.800781 114.984375 C 167.800781 116.878906 164.957031 116.878906 164.957031 114.984375 C 164.957031 113.089844 167.800781 113.089844 167.800781 114.984375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 169.765625 114.8125 C 169.765625 116.707031 166.921875 116.707031 166.921875 114.8125 C 166.921875 112.917969 169.765625 112.917969 169.765625 114.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 151.898438 111.816406 C 151.898438 113.710938 149.054688 113.710938 149.054688 111.816406 C 149.054688 109.921875 151.898438 109.921875 151.898438 111.816406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 178.722656 120.175781 C 178.722656 122.074219 175.878906 122.074219 175.878906 120.175781 C 175.878906 118.28125 178.722656 118.28125 178.722656 120.175781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 136.191406 138.828125 C 136.191406 140.722656 133.351562 140.722656 133.351562 138.828125 C 133.351562 136.933594 136.191406 136.933594 136.191406 138.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 152.238281 142.378906 C 152.238281 144.273438 149.394531 144.273438 149.394531 142.378906 C 149.394531 140.480469 152.238281 140.480469 152.238281 142.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 131.339844 127.171875 C 131.339844 129.070312 128.496094 129.070312 128.496094 127.171875 C 128.496094 125.277344 131.339844 125.277344 131.339844 127.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 153.09375 150.804688 C 153.09375 152.703125 150.25 152.703125 150.25 150.804688 C 150.25 148.910156 153.09375 148.910156 153.09375 150.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 185.539062 124.027344 C 185.539062 125.921875 182.699219 125.921875 182.699219 124.027344 C 182.699219 122.132812 185.539062 122.132812 185.539062 124.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.210938 131.902344 C 146.210938 133.796875 143.367188 133.796875 143.367188 131.902344 C 143.367188 130.007812 146.210938 130.007812 146.210938 131.902344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 161.441406 123.460938 C 161.441406 125.355469 158.597656 125.355469 158.597656 123.460938 C 158.597656 121.566406 161.441406 121.566406 161.441406 123.460938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 143.355469 140.941406 C 143.355469 142.835938 140.511719 142.835938 140.511719 140.941406 C 140.511719 139.046875 143.355469 139.046875 143.355469 140.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 137.84375 135.21875 C 137.84375 137.113281 135.003906 137.113281 135.003906 135.21875 C 135.003906 133.324219 137.84375 133.324219 137.84375 135.21875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.0625 137.707031 C 160.0625 139.601562 157.21875 139.601562 157.21875 137.707031 C 157.21875 135.8125 160.0625 135.8125 160.0625 137.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 167.523438 118.300781 C 167.523438 120.195312 164.679688 120.195312 164.679688 118.300781 C 164.679688 116.40625 167.523438 116.40625 167.523438 118.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 172.84375 125.921875 C 172.84375 127.816406 170 127.816406 170 125.921875 C 170 124.027344 172.84375 124.027344 172.84375 125.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 160.808594 118.214844 C 160.808594 120.109375 157.96875 120.109375 157.96875 118.214844 C 157.96875 116.320312 160.808594 116.320312 160.808594 118.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 156.726562 155.699219 C 156.726562 157.59375 153.882812 157.59375 153.882812 155.699219 C 153.882812 153.804688 156.726562 153.804688 156.726562 155.699219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 163.8125 147.070312 C 163.8125 148.96875 160.96875 148.96875 160.96875 147.070312 C 160.96875 145.175781 163.8125 145.175781 163.8125 147.070312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 146.921875 139.929688 C 146.921875 141.824219 144.082031 141.824219 144.082031 139.929688 C 144.082031 138.035156 146.921875 138.035156 146.921875 139.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 163.777344 123.402344 C 163.777344 125.300781 160.9375 125.300781 160.9375 123.402344 C 160.9375 121.507812 163.777344 121.507812 163.777344 123.402344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 137.460938 132.132812 C 137.460938 134.03125 134.621094 134.03125 134.621094 132.132812 C 134.621094 130.238281 137.460938 130.238281 137.460938 132.132812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 128.125 149.527344 C 128.125 151.421875 125.28125 151.421875 125.28125 149.527344 C 125.28125 147.632812 128.125 147.632812 128.125 149.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 149.914062 116.691406 C 149.914062 118.585938 147.070312 118.585938 147.070312 116.691406 C 147.070312 114.796875 149.914062 114.796875 149.914062 116.691406 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.136719 118.074219 L 159.222656 117.980469 L 158.308594 117.902344 L 157.394531 117.835938 L 156.480469 117.777344 L 155.566406 117.730469 L 154.652344 117.699219 L 153.738281 117.675781 L 152.824219 117.664062 L 151.910156 117.664062 L 150.996094 117.675781 L 150.082031 117.699219 L 149.167969 117.738281 L 148.253906 117.792969 L 147.339844 117.859375 L 146.425781 117.941406 L 145.511719 118.042969 L 145.28125 118.074219 L 144.597656 118.167969 L 143.683594 118.308594 L 142.769531 118.472656 L 141.855469 118.660156 L 140.941406 118.875 L 140.550781 118.980469 L 140.027344 119.125 L 139.113281 119.40625 L 138.199219 119.722656 L 137.78125 119.882812 L 137.285156 120.085938 L 136.371094 120.492188 L 135.78125 120.789062 L 135.457031 120.960938 L 134.542969 121.492188 L 134.226562 121.691406 L 133.628906 122.101562 L 132.96875 122.59375 L 132.714844 122.800781 L 131.917969 123.5 L 131.800781 123.613281 L 131.035156 124.402344 L 130.886719 124.574219 L 130.28125 125.308594 L 129.972656 125.726562 L 129.632812 126.210938 L 129.078125 127.117188 L 129.058594 127.152344 L 128.601562 128.019531 L 128.1875 128.921875 L 128.144531 129.035156 L 127.835938 129.828125 L 127.539062 130.730469 L 127.289062 131.636719 L 127.230469 131.886719 L 127.082031 132.539062 L 126.914062 133.445312 L 126.785156 134.347656 L 126.6875 135.25 L 126.625 136.15625 L 126.589844 137.058594 L 126.585938 137.964844 L 126.609375 138.867188 L 126.660156 139.773438 L 126.734375 140.675781 L 126.835938 141.582031 L 126.960938 142.484375 L 127.109375 143.386719 L 127.230469 143.996094 L 127.289062 144.292969 L 127.492188 145.195312 L 127.71875 146.101562 L 127.972656 147.003906 L 128.144531 147.550781 L 128.257812 147.910156 L 128.574219 148.8125 L 128.917969 149.714844 L 129.058594 150.058594 L 129.300781 150.621094 L 129.714844 151.523438 L 129.972656 152.042969 L 130.171875 152.429688 L 130.675781 153.332031 L 130.886719 153.6875 L 131.230469 154.238281 L 131.800781 155.085938 L 131.839844 155.140625 L 132.523438 156.042969 L 132.714844 156.285156 L 133.289062 156.949219 L 133.628906 157.324219 L 134.152344 157.851562 L 134.542969 158.230469 L 135.148438 158.757812 L 135.457031 159.019531 L 136.3125 159.660156 L 136.371094 159.703125 L 137.285156 160.296875 L 137.757812 160.566406 L 138.199219 160.808594 L 139.113281 161.246094 L 139.671875 161.46875 L 140.027344 161.613281 L 140.941406 161.914062 L 141.855469 162.15625 L 142.769531 162.34375 L 142.957031 162.375 L 143.683594 162.484375 L 144.597656 162.570312 L 145.511719 162.613281 L 146.425781 162.609375 L 147.339844 162.5625 L 148.253906 162.480469 L 149.039062 162.375 L 149.167969 162.355469 L 150.082031 162.199219 L 150.996094 162.007812 L 151.910156 161.78125 L 152.824219 161.519531 L 152.976562 161.46875 L 153.738281 161.230469 L 154.652344 160.910156 L 155.539062 160.566406 L 155.566406 160.554688 L 156.480469 160.179688 L 157.394531 159.769531 L 157.617188 159.660156 L 158.308594 159.332031 L 159.222656 158.871094 L 159.429688 158.757812 L 160.136719 158.378906 L 161.050781 157.859375 L 161.0625 157.851562 L 161.964844 157.316406 L 162.554688 156.949219 L 162.878906 156.746094 L 163.792969 156.148438 L 163.941406 156.042969 L 164.707031 155.519531 L 165.238281 155.140625 L 165.621094 154.867188 L 166.460938 154.238281 L 166.535156 154.179688 L 167.449219 153.46875 L 167.617188 153.332031 L 168.363281 152.722656 L 168.710938 152.429688 L 169.277344 151.941406 L 169.75 151.523438 L 170.191406 151.128906 L 170.738281 150.621094 L 171.105469 150.273438 L 171.679688 149.714844 L 172.019531 149.378906 L 172.574219 148.8125 L 172.933594 148.433594 L 173.425781 147.910156 L 173.847656 147.4375 L 174.230469 147.003906 L 174.761719 146.378906 L 174.996094 146.101562 L 175.675781 145.246094 L 175.714844 145.195312 L 176.394531 144.292969 L 176.589844 144.019531 L 177.035156 143.386719 L 177.503906 142.675781 L 177.628906 142.484375 L 178.179688 141.582031 L 178.417969 141.160156 L 178.691406 140.675781 L 179.152344 139.773438 L 179.332031 139.386719 L 179.574219 138.867188 L 179.945312 137.964844 L 180.246094 137.125 L 180.269531 137.058594 L 180.542969 136.15625 L 180.765625 135.25 L 180.933594 134.347656 L 181.042969 133.445312 L 181.09375 132.539062 L 181.078125 131.636719 L 180.992188 130.730469 L 180.835938 129.828125 L 180.59375 128.921875 L 180.257812 128.019531 L 180.246094 127.988281 L 179.824219 127.117188 L 179.332031 126.296875 L 179.277344 126.210938 L 178.59375 125.308594 L 178.417969 125.109375 L 177.757812 124.402344 L 177.503906 124.167969 L 176.734375 123.5 L 176.589844 123.386719 L 175.675781 122.726562 L 175.480469 122.59375 L 174.761719 122.160156 L 173.929688 121.691406 L 173.847656 121.648438 L 172.933594 121.207031 L 172.019531 120.804688 L 171.980469 120.789062 L 171.105469 120.449219 L 170.191406 120.128906 L 169.441406 119.882812 L 169.277344 119.832031 L 168.363281 119.570312 L 167.449219 119.332031 L 166.535156 119.113281 L 165.621094 118.914062 L 164.707031 118.738281 L 163.792969 118.578125 L 162.878906 118.429688 L 161.964844 118.300781 L 161.050781 118.179688 L 160.140625 118.074219 L 160.136719 118.074219 "/> +<g clip-path="url(#clip17)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 238.265625 L 231.382812 238.265625 L 231.382812 40.371094 L 31.296875 40.371094 Z M 31.296875 238.265625 "/> +</g> +<g clip-path="url(#clip18)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 204.738281 L 436.953125 204.738281 "/> +</g> +<g clip-path="url(#clip19)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 155.675781 L 436.953125 155.675781 "/> +</g> +<g clip-path="url(#clip20)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 106.609375 L 436.953125 106.609375 "/> +</g> +<g clip-path="url(#clip21)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 57.546875 L 436.953125 57.546875 "/> +</g> +<g clip-path="url(#clip22)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.765625 238.265625 L 270.765625 40.371094 "/> +</g> +<g clip-path="url(#clip23)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.375 238.265625 L 320.375 40.371094 "/> +</g> +<g clip-path="url(#clip24)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.980469 238.265625 L 369.980469 40.371094 "/> +</g> +<g clip-path="url(#clip25)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.589844 238.265625 L 419.589844 40.371094 "/> +</g> +<g clip-path="url(#clip26)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 229.273438 L 436.953125 229.273438 "/> +</g> +<g clip-path="url(#clip27)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 180.207031 L 436.953125 180.207031 "/> +</g> +<g clip-path="url(#clip28)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 131.140625 L 436.953125 131.140625 "/> +</g> +<g clip-path="url(#clip29)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 82.078125 L 436.953125 82.078125 "/> +</g> +<g clip-path="url(#clip30)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.960938 238.265625 L 245.960938 40.371094 "/> +</g> +<g clip-path="url(#clip31)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.570312 238.265625 L 295.570312 40.371094 "/> +</g> +<g clip-path="url(#clip32)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.175781 238.265625 L 345.175781 40.371094 "/> +</g> +<g clip-path="url(#clip33)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.785156 238.265625 L 394.785156 40.371094 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 382.398438 79.371094 C 382.398438 81.265625 379.558594 81.265625 379.558594 79.371094 C 379.558594 77.476562 382.398438 77.476562 382.398438 79.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.628906 68.570312 C 378.628906 70.464844 375.789062 70.464844 375.789062 68.570312 C 375.789062 66.675781 378.628906 66.675781 378.628906 68.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.953125 149.78125 C 327.953125 151.675781 325.113281 151.675781 325.113281 149.78125 C 325.113281 147.886719 327.953125 147.886719 327.953125 149.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 329.058594 124.8125 C 329.058594 126.707031 326.214844 126.707031 326.214844 124.8125 C 326.214844 122.917969 329.058594 122.917969 329.058594 124.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 368.140625 118.179688 C 368.140625 120.074219 365.300781 120.074219 365.300781 118.179688 C 365.300781 116.285156 368.140625 116.285156 368.140625 118.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 319.101562 149.300781 C 319.101562 151.199219 316.261719 151.199219 316.261719 149.300781 C 316.261719 147.40625 319.101562 147.40625 319.101562 149.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.421875 109.273438 C 378.421875 111.167969 375.578125 111.167969 375.578125 109.273438 C 375.578125 107.378906 378.421875 107.378906 378.421875 109.273438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 309.007812 170.378906 C 309.007812 172.273438 306.164062 172.273438 306.164062 170.378906 C 306.164062 168.484375 309.007812 168.484375 309.007812 170.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.578125 112.878906 C 355.578125 114.773438 352.734375 114.773438 352.734375 112.878906 C 352.734375 110.984375 355.578125 110.984375 355.578125 112.878906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 379.75 113.429688 C 379.75 115.324219 376.90625 115.324219 376.90625 113.429688 C 376.90625 111.535156 379.75 111.535156 379.75 113.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.039062 92.929688 C 363.039062 94.824219 360.195312 94.824219 360.195312 92.929688 C 360.195312 91.035156 363.039062 91.035156 363.039062 92.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.683594 164.003906 C 330.683594 165.898438 327.839844 165.898438 327.839844 164.003906 C 327.839844 162.109375 330.683594 162.109375 330.683594 164.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 359.398438 106.011719 C 359.398438 107.910156 356.554688 107.910156 356.554688 106.011719 C 356.554688 104.117188 359.398438 104.117188 359.398438 106.011719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 300.117188 157.671875 C 300.117188 159.566406 297.277344 159.566406 297.277344 157.671875 C 297.277344 155.777344 300.117188 155.777344 300.117188 157.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 286.632812 184.289062 C 286.632812 186.183594 283.789062 186.183594 283.789062 184.289062 C 283.789062 182.394531 286.632812 182.394531 286.632812 184.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 353.242188 110.921875 C 353.242188 112.816406 350.398438 112.816406 350.398438 110.921875 C 350.398438 109.023438 353.242188 109.023438 353.242188 110.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 380.511719 104.710938 C 380.511719 106.605469 377.667969 106.605469 377.667969 104.710938 C 377.667969 102.816406 380.511719 102.816406 380.511719 104.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.992188 117.265625 C 363.992188 119.160156 361.148438 119.160156 361.148438 117.265625 C 361.148438 115.371094 363.992188 115.371094 363.992188 117.265625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.265625 109.628906 C 357.265625 111.523438 354.421875 111.523438 354.421875 109.628906 C 354.421875 107.734375 357.265625 107.734375 357.265625 109.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.835938 124.691406 C 333.835938 126.589844 330.992188 126.589844 330.992188 124.691406 C 330.992188 122.796875 333.835938 122.796875 333.835938 124.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 318.070312 154.839844 C 318.070312 156.734375 315.226562 156.734375 315.226562 154.839844 C 315.226562 152.945312 318.070312 152.945312 318.070312 154.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 289.476562 182.03125 C 289.476562 183.925781 286.632812 183.925781 286.632812 182.03125 C 286.632812 180.132812 289.476562 180.132812 289.476562 182.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.484375 92.921875 C 356.484375 94.816406 353.640625 94.816406 353.640625 92.921875 C 353.640625 91.027344 356.484375 91.027344 356.484375 92.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 344.121094 127.574219 C 344.121094 129.46875 341.277344 129.46875 341.277344 127.574219 C 341.277344 125.679688 344.121094 125.679688 344.121094 127.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.332031 98.179688 C 352.332031 100.074219 349.488281 100.074219 349.488281 98.179688 C 349.488281 96.285156 352.332031 96.285156 352.332031 98.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 303.570312 181.472656 C 303.570312 183.367188 300.730469 183.367188 300.730469 181.472656 C 300.730469 179.578125 303.570312 179.578125 303.570312 181.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 389.429688 77.003906 C 389.429688 78.898438 386.585938 78.898438 386.585938 77.003906 C 386.585938 75.109375 389.429688 75.109375 389.429688 77.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 316.464844 144.324219 C 316.464844 146.222656 313.621094 146.222656 313.621094 144.324219 C 313.621094 142.429688 316.464844 142.429688 316.464844 144.324219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 334.59375 118.664062 C 334.59375 120.558594 331.75 120.558594 331.75 118.664062 C 331.75 116.769531 334.59375 116.769531 334.59375 118.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.136719 106.777344 C 365.136719 108.671875 362.292969 108.671875 362.292969 106.777344 C 362.292969 104.882812 365.136719 104.882812 365.136719 106.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 360.234375 114.195312 C 360.234375 116.089844 357.390625 116.089844 357.390625 114.195312 C 357.390625 112.300781 360.234375 112.300781 360.234375 114.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 313.46875 159.035156 C 313.46875 160.929688 310.628906 160.929688 310.628906 159.035156 C 310.628906 157.136719 313.46875 157.136719 313.46875 159.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.148438 88.59375 C 374.148438 90.488281 371.304688 90.488281 371.304688 88.59375 C 371.304688 86.699219 374.148438 86.699219 374.148438 88.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 377.472656 101.847656 C 377.472656 103.742188 374.632812 103.742188 374.632812 101.847656 C 374.632812 99.953125 377.472656 99.953125 377.472656 101.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 306.285156 169.621094 C 306.285156 171.515625 303.441406 171.515625 303.441406 169.621094 C 303.441406 167.726562 306.285156 167.726562 306.285156 169.621094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.671875 100.660156 C 331.671875 102.554688 328.828125 102.554688 328.828125 100.660156 C 328.828125 98.765625 331.671875 98.765625 331.671875 100.660156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 388.175781 103.964844 C 388.175781 105.859375 385.332031 105.859375 385.332031 103.964844 C 385.332031 102.070312 388.175781 102.070312 388.175781 103.964844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 305.824219 153.054688 C 305.824219 154.953125 302.980469 154.953125 302.980469 153.054688 C 302.980469 151.160156 305.824219 151.160156 305.824219 153.054688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 305.382812 182.804688 C 305.382812 184.699219 302.539062 184.699219 302.539062 182.804688 C 302.539062 180.910156 305.382812 180.910156 305.382812 182.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 327.25 130.058594 C 327.25 131.953125 324.40625 131.953125 324.40625 130.058594 C 324.40625 128.164062 327.25 128.164062 327.25 130.058594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 366.882812 107.5 C 366.882812 109.394531 364.039062 109.394531 364.039062 107.5 C 364.039062 105.605469 366.882812 105.605469 366.882812 107.5 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 328.824219 148.996094 C 328.824219 150.890625 325.980469 150.890625 325.980469 148.996094 C 325.980469 147.101562 328.824219 147.101562 328.824219 148.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.597656 123.417969 C 321.597656 125.3125 318.753906 125.3125 318.753906 123.417969 C 318.753906 121.523438 321.597656 121.523438 321.597656 123.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 303.402344 164.488281 C 303.402344 166.386719 300.5625 166.386719 300.5625 164.488281 C 300.5625 162.59375 303.402344 162.59375 303.402344 164.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.917969 171.449219 C 321.917969 173.34375 319.074219 173.34375 319.074219 171.449219 C 319.074219 169.554688 321.917969 169.554688 321.917969 171.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 292.203125 159.417969 C 292.203125 161.316406 289.359375 161.316406 289.359375 159.417969 C 289.359375 157.523438 292.203125 157.523438 292.203125 159.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 422.40625 79.414062 C 422.40625 81.308594 419.566406 81.308594 419.566406 79.414062 C 419.566406 77.515625 422.40625 77.515625 422.40625 79.414062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 326.890625 141.777344 C 326.890625 143.671875 324.046875 143.671875 324.046875 141.777344 C 324.046875 139.882812 326.890625 139.882812 326.890625 141.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 343.179688 109.65625 C 343.179688 111.550781 340.339844 111.550781 340.339844 109.65625 C 340.339844 107.761719 343.179688 107.761719 343.179688 109.65625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 332.84375 112.167969 C 332.84375 114.0625 330.003906 114.0625 330.003906 112.167969 C 330.003906 110.273438 332.84375 110.273438 332.84375 112.167969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 301.59375 147.097656 C 301.59375 148.992188 298.75 148.992188 298.75 147.097656 C 298.75 145.203125 301.59375 145.203125 301.59375 147.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.367188 183.640625 C 321.367188 185.539062 318.523438 185.539062 318.523438 183.640625 C 318.523438 181.746094 321.367188 181.746094 321.367188 183.640625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 314.472656 143.277344 C 314.472656 145.171875 311.628906 145.171875 311.628906 143.277344 C 311.628906 141.382812 314.472656 141.382812 314.472656 143.277344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 387.101562 104.769531 C 387.101562 106.664062 384.257812 106.664062 384.257812 104.769531 C 384.257812 102.875 387.101562 102.875 387.101562 104.769531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 322.5625 138.171875 C 322.5625 140.066406 319.71875 140.066406 319.71875 138.171875 C 319.71875 136.277344 322.5625 136.277344 322.5625 138.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 392.097656 90.324219 C 392.097656 92.21875 389.253906 92.21875 389.253906 90.324219 C 389.253906 88.429688 392.097656 88.429688 392.097656 90.324219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.957031 102.355469 C 374.957031 104.25 372.113281 104.25 372.113281 102.355469 C 372.113281 100.460938 374.957031 100.460938 374.957031 102.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 382.859375 85.035156 C 382.859375 86.929688 380.015625 86.929688 380.015625 85.035156 C 380.015625 83.136719 382.859375 83.136719 382.859375 85.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 315.300781 141.714844 C 315.300781 143.609375 312.457031 143.609375 312.457031 141.714844 C 312.457031 139.816406 315.300781 139.816406 315.300781 141.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 354.242188 107.527344 C 354.242188 109.421875 351.398438 109.421875 351.398438 107.527344 C 351.398438 105.632812 354.242188 105.632812 354.242188 107.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.8125 83.214844 C 364.8125 85.109375 361.96875 85.109375 361.96875 83.214844 C 361.96875 81.320312 364.8125 81.320312 364.8125 83.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.535156 104.921875 C 362.535156 106.816406 359.691406 106.816406 359.691406 104.921875 C 359.691406 103.027344 362.535156 103.027344 362.535156 104.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 386.714844 109.867188 C 386.714844 111.761719 383.871094 111.761719 383.871094 109.867188 C 383.871094 107.96875 386.714844 107.96875 386.714844 109.867188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.910156 95.027344 C 373.910156 96.925781 371.066406 96.925781 371.066406 95.027344 C 371.066406 93.132812 373.910156 93.132812 373.910156 95.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 376.070312 95.148438 C 376.070312 97.042969 373.230469 97.042969 373.230469 95.148438 C 373.230469 93.253906 376.070312 93.253906 376.070312 95.148438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 324.867188 142.480469 C 324.867188 144.375 322.023438 144.375 322.023438 142.480469 C 322.023438 140.585938 324.867188 140.585938 324.867188 142.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.800781 132.472656 C 321.800781 134.367188 318.957031 134.367188 318.957031 132.472656 C 318.957031 130.578125 321.800781 130.578125 321.800781 132.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 305.300781 172.753906 C 305.300781 174.648438 302.457031 174.648438 302.457031 172.753906 C 302.457031 170.859375 305.300781 170.859375 305.300781 172.753906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.21875 110.933594 C 358.21875 112.828125 355.375 112.828125 355.375 110.933594 C 355.375 109.039062 358.21875 109.039062 358.21875 110.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 298.804688 173.789062 C 298.804688 175.683594 295.960938 175.683594 295.960938 173.789062 C 295.960938 171.894531 298.804688 171.894531 298.804688 173.789062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 314.648438 129.882812 C 314.648438 131.777344 311.804688 131.777344 311.804688 129.882812 C 311.804688 127.988281 314.648438 127.988281 314.648438 129.882812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 306.671875 152.453125 C 306.671875 154.347656 303.828125 154.347656 303.828125 152.453125 C 303.828125 150.554688 306.671875 150.554688 306.671875 152.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 308.265625 132.765625 C 308.265625 134.660156 305.421875 134.660156 305.421875 132.765625 C 305.421875 130.871094 308.265625 130.871094 308.265625 132.765625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.890625 92.148438 C 356.890625 94.042969 354.050781 94.042969 354.050781 92.148438 C 354.050781 90.253906 356.890625 90.253906 356.890625 92.148438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 324.273438 136.242188 C 324.273438 138.140625 321.429688 138.140625 321.429688 136.242188 C 321.429688 134.347656 324.273438 134.347656 324.273438 136.242188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 329.445312 168.792969 C 329.445312 170.6875 326.601562 170.6875 326.601562 168.792969 C 326.601562 166.898438 329.445312 166.898438 329.445312 168.792969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.21875 141.449219 C 321.21875 143.347656 318.375 143.347656 318.375 141.449219 C 318.375 139.554688 321.21875 139.554688 321.21875 141.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 322.433594 116.410156 C 322.433594 118.304688 319.589844 118.304688 319.589844 116.410156 C 319.589844 114.515625 322.433594 114.515625 322.433594 116.410156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 313.207031 140.398438 C 313.207031 142.292969 310.367188 142.292969 310.367188 140.398438 C 310.367188 138.503906 313.207031 138.503906 313.207031 140.398438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 372.507812 109.363281 C 372.507812 111.257812 369.667969 111.257812 369.667969 109.363281 C 369.667969 107.464844 372.507812 107.464844 372.507812 109.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.085938 93.421875 C 364.085938 95.316406 361.242188 95.316406 361.242188 93.421875 C 361.242188 91.527344 364.085938 91.527344 364.085938 93.421875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 392.90625 76.753906 C 392.90625 78.648438 390.0625 78.648438 390.0625 76.753906 C 390.0625 74.859375 392.90625 74.859375 392.90625 76.753906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 399.292969 86.03125 C 399.292969 87.925781 396.453125 87.925781 396.453125 86.03125 C 396.453125 84.136719 399.292969 84.136719 399.292969 86.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 360.773438 95.523438 C 360.773438 97.417969 357.933594 97.417969 357.933594 95.523438 C 357.933594 93.625 360.773438 93.625 360.773438 95.523438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.980469 105.648438 C 338.980469 107.542969 336.136719 107.542969 336.136719 105.648438 C 336.136719 103.75 338.980469 103.75 338.980469 105.648438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 383.945312 73.699219 C 383.945312 75.59375 381.105469 75.59375 381.105469 73.699219 C 381.105469 71.804688 383.945312 71.804688 383.945312 73.699219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 334.109375 138.253906 C 334.109375 140.148438 331.265625 140.148438 331.265625 138.253906 C 331.265625 136.359375 334.109375 136.359375 334.109375 138.253906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.523438 134.746094 C 321.523438 136.640625 318.679688 136.640625 318.679688 134.746094 C 318.679688 132.851562 321.523438 132.851562 321.523438 134.746094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 366.355469 107.378906 C 366.355469 109.273438 363.511719 109.273438 363.511719 107.378906 C 363.511719 105.484375 366.355469 105.484375 366.355469 107.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.820312 102.488281 C 362.820312 104.382812 359.976562 104.382812 359.976562 102.488281 C 359.976562 100.59375 362.820312 100.59375 362.820312 102.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.246094 114.648438 C 351.246094 116.542969 348.402344 116.542969 348.402344 114.648438 C 348.402344 112.753906 351.246094 112.753906 351.246094 114.648438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.519531 106.933594 C 331.519531 108.828125 328.675781 108.828125 328.675781 106.933594 C 328.675781 105.039062 331.519531 105.039062 331.519531 106.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 313.492188 149.824219 C 313.492188 151.71875 310.648438 151.71875 310.648438 149.824219 C 310.648438 147.925781 313.492188 147.925781 313.492188 149.824219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 392.074219 78.960938 C 392.074219 80.855469 389.234375 80.855469 389.234375 78.960938 C 389.234375 77.0625 392.074219 77.0625 392.074219 78.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.039062 164.429688 C 321.039062 166.324219 318.195312 166.324219 318.195312 164.429688 C 318.195312 162.535156 321.039062 162.535156 321.039062 164.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.902344 107.710938 C 356.902344 109.605469 354.058594 109.605469 354.058594 107.710938 C 354.058594 105.816406 356.902344 105.816406 356.902344 107.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.609375 96.027344 C 355.609375 97.921875 352.765625 97.921875 352.765625 96.027344 C 352.765625 94.128906 355.609375 94.128906 355.609375 96.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 372.074219 99.542969 C 372.074219 101.4375 369.230469 101.4375 369.230469 99.542969 C 369.230469 97.648438 372.074219 97.648438 372.074219 99.542969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 354.132812 120.03125 C 354.132812 121.925781 351.289062 121.925781 351.289062 120.03125 C 351.289062 118.136719 354.132812 118.136719 354.132812 120.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.429688 88.246094 C 352.429688 90.140625 349.585938 90.140625 349.585938 88.246094 C 349.585938 86.351562 352.429688 86.351562 352.429688 88.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 317.1875 144.136719 C 317.1875 146.03125 314.34375 146.03125 314.34375 144.136719 C 314.34375 142.242188 317.1875 142.242188 317.1875 144.136719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 322.507812 139.214844 C 322.507812 141.109375 319.664062 141.109375 319.664062 139.214844 C 319.664062 137.320312 322.507812 137.320312 322.507812 139.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 382.441406 101.117188 C 382.441406 103.015625 379.597656 103.015625 379.597656 101.117188 C 379.597656 99.222656 382.441406 99.222656 382.441406 101.117188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 372.996094 107.0625 C 372.996094 108.960938 370.152344 108.960938 370.152344 107.0625 C 370.152344 105.167969 372.996094 105.167969 372.996094 107.0625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 316.871094 143.660156 C 316.871094 145.554688 314.03125 145.554688 314.03125 143.660156 C 314.03125 141.765625 316.871094 141.765625 316.871094 143.660156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 320.988281 169.570312 C 320.988281 171.464844 318.144531 171.464844 318.144531 169.570312 C 318.144531 167.675781 320.988281 167.675781 320.988281 169.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.242188 104.761719 C 364.242188 106.65625 361.398438 106.65625 361.398438 104.761719 C 361.398438 102.867188 364.242188 102.867188 364.242188 104.761719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.066406 84.382812 C 367.066406 86.277344 364.226562 86.277344 364.226562 84.382812 C 364.226562 82.488281 367.066406 82.488281 367.066406 84.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.933594 115.035156 C 347.933594 116.929688 345.089844 116.929688 345.089844 115.035156 C 345.089844 113.140625 347.933594 113.140625 347.933594 115.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 287.457031 171.734375 C 287.457031 173.628906 284.613281 173.628906 284.613281 171.734375 C 284.613281 169.839844 287.457031 169.839844 287.457031 171.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 313.105469 145.617188 C 313.105469 147.511719 310.261719 147.511719 310.261719 145.617188 C 310.261719 143.722656 313.105469 143.722656 313.105469 145.617188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.003906 84.332031 C 352.003906 86.226562 349.160156 86.226562 349.160156 84.332031 C 349.160156 82.433594 352.003906 82.433594 352.003906 84.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 302.816406 184.023438 C 302.816406 185.917969 299.972656 185.917969 299.972656 184.023438 C 299.972656 182.128906 302.816406 182.128906 302.816406 184.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.589844 67.226562 C 375.589844 69.121094 372.746094 69.121094 372.746094 67.226562 C 372.746094 65.328125 375.589844 65.328125 375.589844 67.226562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.285156 145.847656 C 321.285156 147.742188 318.441406 147.742188 318.441406 145.847656 C 318.441406 143.953125 321.285156 143.953125 321.285156 145.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.730469 102.925781 C 365.730469 104.820312 362.886719 104.820312 362.886719 102.925781 C 362.886719 101.03125 365.730469 101.03125 365.730469 102.925781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.25 88.480469 C 349.25 90.378906 346.40625 90.378906 346.40625 88.480469 C 346.40625 86.585938 349.25 86.585938 349.25 88.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 321.710938 125.300781 C 321.710938 127.195312 318.867188 127.195312 318.867188 125.300781 C 318.867188 123.40625 321.710938 123.40625 321.710938 125.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.144531 69.722656 C 378.144531 71.617188 375.304688 71.617188 375.304688 69.722656 C 375.304688 67.828125 378.144531 67.828125 378.144531 69.722656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 393.851562 110.339844 C 393.851562 112.234375 391.011719 112.234375 391.011719 110.339844 C 391.011719 108.445312 393.851562 108.445312 393.851562 110.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 340.304688 109.09375 C 340.304688 110.988281 337.464844 110.988281 337.464844 109.09375 C 337.464844 107.199219 340.304688 107.199219 340.304688 109.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.390625 117.695312 C 351.390625 119.589844 348.546875 119.589844 348.546875 117.695312 C 348.546875 115.800781 351.390625 115.800781 351.390625 117.695312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 370.839844 124.371094 C 370.839844 126.265625 367.996094 126.265625 367.996094 124.371094 C 367.996094 122.476562 370.839844 122.476562 370.839844 124.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.066406 118.199219 C 374.066406 120.09375 371.222656 120.09375 371.222656 118.199219 C 371.222656 116.304688 374.066406 116.304688 374.066406 118.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.09375 126.621094 C 373.09375 128.515625 370.253906 128.515625 370.253906 126.621094 C 370.253906 124.726562 373.09375 124.726562 373.09375 126.621094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.394531 134.777344 C 364.394531 136.675781 361.550781 136.675781 361.550781 134.777344 C 361.550781 132.882812 364.394531 132.882812 364.394531 134.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 368.070312 117.707031 C 368.070312 119.601562 365.226562 119.601562 365.226562 117.707031 C 365.226562 115.808594 368.070312 115.808594 368.070312 117.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 346.71875 135.964844 C 346.71875 137.859375 343.878906 137.859375 343.878906 135.964844 C 343.878906 134.070312 346.71875 134.070312 346.71875 135.964844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.070312 121.570312 C 352.070312 123.464844 349.226562 123.464844 349.226562 121.570312 C 349.226562 119.671875 352.070312 119.671875 352.070312 121.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.855469 134.097656 C 374.855469 135.992188 372.011719 135.992188 372.011719 134.097656 C 372.011719 132.203125 374.855469 132.203125 374.855469 134.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.46875 137.074219 C 357.46875 138.96875 354.625 138.96875 354.625 137.074219 C 354.625 135.179688 357.46875 135.179688 357.46875 137.074219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.261719 132.234375 C 339.261719 134.128906 336.417969 134.128906 336.417969 132.234375 C 336.417969 130.339844 339.261719 130.339844 339.261719 132.234375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 359.1875 130.191406 C 359.1875 132.089844 356.347656 132.089844 356.347656 130.191406 C 356.347656 128.296875 359.1875 128.296875 359.1875 130.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.554688 139.453125 C 355.554688 141.347656 352.714844 141.347656 352.714844 139.453125 C 352.714844 137.554688 355.554688 137.554688 355.554688 139.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.429688 136.714844 C 356.429688 138.609375 353.585938 138.609375 353.585938 136.714844 C 353.585938 134.820312 356.429688 134.820312 356.429688 136.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 391.777344 136.960938 C 391.777344 138.855469 388.933594 138.855469 388.933594 136.960938 C 388.933594 135.066406 391.777344 135.066406 391.777344 136.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.046875 126.449219 C 355.046875 128.34375 352.203125 128.34375 352.203125 126.449219 C 352.203125 124.554688 355.046875 124.554688 355.046875 126.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.179688 103.59375 C 345.179688 105.488281 342.335938 105.488281 342.335938 103.59375 C 342.335938 101.699219 345.179688 101.699219 345.179688 103.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.570312 135.386719 C 341.570312 137.285156 338.726562 137.285156 338.726562 135.386719 C 338.726562 133.492188 341.570312 133.492188 341.570312 135.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.320312 148.804688 C 357.320312 150.699219 354.480469 150.699219 354.480469 148.804688 C 354.480469 146.90625 357.320312 146.90625 357.320312 148.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 379.105469 120.84375 C 379.105469 122.738281 376.265625 122.738281 376.265625 120.84375 C 376.265625 118.949219 379.105469 118.949219 379.105469 120.84375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.246094 139.078125 C 330.246094 140.972656 327.402344 140.972656 327.402344 139.078125 C 327.402344 137.183594 330.246094 137.183594 330.246094 139.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.644531 115.847656 C 358.644531 117.742188 355.800781 117.742188 355.800781 115.847656 C 355.800781 113.953125 358.644531 113.953125 358.644531 115.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.359375 145.289062 C 349.359375 147.1875 346.519531 147.1875 346.519531 145.289062 C 346.519531 143.394531 349.359375 143.394531 349.359375 145.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.886719 162.074219 C 336.886719 163.96875 334.042969 163.96875 334.042969 162.074219 C 334.042969 160.179688 336.886719 160.179688 336.886719 162.074219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.804688 148.460938 C 349.804688 150.359375 346.964844 150.359375 346.964844 148.460938 C 346.964844 146.566406 349.804688 146.566406 349.804688 148.460938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 326.960938 109.023438 C 326.960938 110.917969 324.117188 110.917969 324.117188 109.023438 C 324.117188 107.128906 326.960938 107.128906 326.960938 109.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 393.675781 116.519531 C 393.675781 118.414062 390.832031 118.414062 390.832031 116.519531 C 390.832031 114.625 393.675781 114.625 393.675781 116.519531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.113281 118.25 C 364.113281 120.144531 361.269531 120.144531 361.269531 118.25 C 361.269531 116.355469 364.113281 116.355469 364.113281 118.25 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 368.449219 121.953125 C 368.449219 123.847656 365.609375 123.847656 365.609375 121.953125 C 365.609375 120.054688 368.449219 120.054688 368.449219 121.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 379.039062 131.816406 C 379.039062 133.710938 376.199219 133.710938 376.199219 131.816406 C 376.199219 129.921875 379.039062 129.921875 379.039062 131.816406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.792969 137.679688 C 333.792969 139.574219 330.953125 139.574219 330.953125 137.679688 C 330.953125 135.785156 333.792969 135.785156 333.792969 137.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 383.929688 119.894531 C 383.929688 121.789062 381.085938 121.789062 381.085938 119.894531 C 381.085938 118 383.929688 118 383.929688 119.894531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.050781 117.691406 C 357.050781 119.589844 354.207031 119.589844 354.207031 117.691406 C 354.207031 115.796875 357.050781 115.796875 357.050781 117.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 335.671875 152.078125 C 335.671875 153.972656 332.828125 153.972656 332.828125 152.078125 C 332.828125 150.183594 335.671875 150.183594 335.671875 152.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.109375 120.316406 C 339.109375 122.210938 336.265625 122.210938 336.265625 120.316406 C 336.265625 118.421875 339.109375 118.421875 339.109375 120.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.882812 131.335938 C 339.882812 133.234375 337.039062 133.234375 337.039062 131.335938 C 337.039062 129.441406 339.882812 129.441406 339.882812 131.335938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 328.015625 141.765625 C 328.015625 143.660156 325.171875 143.660156 325.171875 141.765625 C 325.171875 139.871094 328.015625 139.871094 328.015625 141.765625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.867188 135.996094 C 341.867188 137.890625 339.023438 137.890625 339.023438 135.996094 C 339.023438 134.101562 341.867188 134.101562 341.867188 135.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 364.292969 122.246094 C 364.292969 124.144531 361.449219 124.144531 361.449219 122.246094 C 361.449219 120.351562 364.292969 120.351562 364.292969 122.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 317.285156 122.945312 C 317.285156 124.84375 314.445312 124.84375 314.445312 122.945312 C 314.445312 121.050781 317.285156 121.050781 317.285156 122.945312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.46875 140.953125 C 361.46875 142.847656 358.625 142.847656 358.625 140.953125 C 358.625 139.058594 361.46875 139.058594 361.46875 140.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.503906 152.585938 C 345.503906 154.480469 342.664062 154.480469 342.664062 152.585938 C 342.664062 150.691406 345.503906 150.691406 345.503906 152.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 366.226562 131.664062 C 366.226562 133.558594 363.386719 133.558594 363.386719 131.664062 C 363.386719 129.765625 366.226562 129.765625 366.226562 131.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.882812 152.257812 C 333.882812 154.152344 331.039062 154.152344 331.039062 152.257812 C 331.039062 150.363281 333.882812 150.363281 333.882812 152.257812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.980469 141.09375 C 338.980469 142.988281 336.140625 142.988281 336.140625 141.09375 C 336.140625 139.199219 338.980469 139.199219 338.980469 141.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.433594 135.890625 C 351.433594 137.785156 348.589844 137.785156 348.589844 135.890625 C 348.589844 133.996094 351.433594 133.996094 351.433594 135.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.144531 126.875 C 338.144531 128.769531 335.300781 128.769531 335.300781 126.875 C 335.300781 124.980469 338.144531 124.980469 338.144531 126.875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 361.324219 132.285156 C 361.324219 134.179688 358.484375 134.179688 358.484375 132.285156 C 358.484375 130.390625 361.324219 130.390625 361.324219 132.285156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.871094 134.058594 C 352.871094 135.953125 350.027344 135.953125 350.027344 134.058594 C 350.027344 132.164062 352.871094 132.164062 352.871094 134.058594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 342.96875 181.4375 C 342.96875 183.335938 340.128906 183.335938 340.128906 181.4375 C 340.128906 179.542969 342.96875 179.542969 342.96875 181.4375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 339.152344 113.292969 C 339.152344 115.1875 336.308594 115.1875 336.308594 113.292969 C 336.308594 111.398438 339.152344 111.398438 339.152344 113.292969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.546875 126.992188 C 338.546875 128.886719 335.707031 128.886719 335.707031 126.992188 C 335.707031 125.097656 338.546875 125.097656 338.546875 126.992188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 397.90625 115.476562 C 397.90625 117.371094 395.066406 117.371094 395.066406 115.476562 C 395.066406 113.582031 397.90625 113.582031 397.90625 115.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 344.191406 111.878906 C 344.191406 113.773438 341.347656 113.773438 341.347656 111.878906 C 341.347656 109.984375 344.191406 109.984375 344.191406 111.878906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 340.878906 132 C 340.878906 133.894531 338.039062 133.894531 338.039062 132 C 338.039062 130.105469 340.878906 130.105469 340.878906 132 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.226562 117.441406 C 378.226562 119.335938 375.382812 119.335938 375.382812 117.441406 C 375.382812 115.542969 378.226562 115.542969 378.226562 117.441406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 340.464844 135.234375 C 340.464844 137.132812 337.621094 137.132812 337.621094 135.234375 C 337.621094 133.339844 340.464844 133.339844 340.464844 135.234375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 349.511719 134.734375 C 349.511719 136.628906 346.671875 136.628906 346.671875 134.734375 C 346.671875 132.835938 349.511719 132.835938 349.511719 134.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 342.484375 153.921875 C 342.484375 155.816406 339.640625 155.816406 339.640625 153.921875 C 339.640625 152.023438 342.484375 152.023438 342.484375 153.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 374.523438 113.429688 C 374.523438 115.324219 371.679688 115.324219 371.679688 113.429688 C 371.679688 111.535156 374.523438 111.535156 374.523438 113.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 335.15625 137.035156 C 335.15625 138.929688 332.3125 138.929688 332.3125 137.035156 C 332.3125 135.136719 335.15625 135.136719 335.15625 137.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 356.613281 120.785156 C 356.613281 122.679688 353.769531 122.679688 353.769531 120.785156 C 353.769531 118.886719 356.613281 118.886719 356.613281 120.785156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.015625 124.304688 C 355.015625 126.199219 352.171875 126.199219 352.171875 124.304688 C 352.171875 122.410156 355.015625 122.410156 355.015625 124.304688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.875 129.339844 C 362.875 131.238281 360.03125 131.238281 360.03125 129.339844 C 360.03125 127.445312 362.875 127.445312 362.875 129.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.320312 134.6875 C 357.320312 136.582031 354.476562 136.582031 354.476562 134.6875 C 354.476562 132.792969 357.320312 132.792969 357.320312 134.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 353.265625 124.988281 C 353.265625 126.882812 350.421875 126.882812 350.421875 124.988281 C 350.421875 123.089844 353.265625 123.089844 353.265625 124.988281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 326.800781 125.390625 C 326.800781 127.285156 323.957031 127.285156 323.957031 125.390625 C 323.957031 123.496094 326.800781 123.496094 326.800781 125.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.054688 139.554688 C 363.054688 141.449219 360.210938 141.449219 360.210938 139.554688 C 360.210938 137.660156 363.054688 137.660156 363.054688 139.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.945312 117.175781 C 373.945312 119.070312 371.101562 119.070312 371.101562 117.175781 C 371.101562 115.277344 373.945312 115.277344 373.945312 117.175781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 368.792969 140.007812 C 368.792969 141.90625 365.953125 141.90625 365.953125 140.007812 C 365.953125 138.113281 368.792969 138.113281 368.792969 140.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.613281 120.667969 C 345.613281 122.5625 342.769531 122.5625 342.769531 120.667969 C 342.769531 118.773438 345.613281 118.773438 345.613281 120.667969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 338.800781 157.429688 C 338.800781 159.324219 335.957031 159.324219 335.957031 157.429688 C 335.957031 155.535156 338.800781 155.535156 338.800781 157.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.523438 132.75 C 378.523438 134.644531 375.683594 134.644531 375.683594 132.75 C 375.683594 130.855469 378.523438 130.855469 378.523438 132.75 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.257812 175.34375 C 331.257812 177.242188 328.414062 177.242188 328.414062 175.34375 C 328.414062 173.449219 331.257812 173.449219 331.257812 175.34375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.878906 130.203125 C 336.878906 132.097656 334.035156 132.097656 334.035156 130.203125 C 334.035156 128.308594 336.878906 128.308594 336.878906 130.203125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 326.132812 156.671875 C 326.132812 158.566406 323.289062 158.566406 323.289062 156.671875 C 323.289062 154.777344 326.132812 154.777344 326.132812 156.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.308594 152.6875 C 331.308594 154.582031 328.46875 154.582031 328.46875 152.6875 C 328.46875 150.792969 331.308594 150.792969 331.308594 152.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.691406 160.109375 C 345.691406 162.003906 342.847656 162.003906 342.847656 160.109375 C 342.847656 158.210938 345.691406 158.210938 345.691406 160.109375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.167969 113.066406 C 347.167969 114.964844 344.324219 114.964844 344.324219 113.066406 C 344.324219 111.171875 347.167969 111.171875 347.167969 113.066406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 330.128906 129.984375 C 330.128906 131.878906 327.285156 131.878906 327.285156 129.984375 C 327.285156 128.085938 330.128906 128.085938 330.128906 129.984375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.3125 144.554688 C 341.3125 146.449219 338.472656 146.449219 338.472656 144.554688 C 338.472656 142.660156 341.3125 142.660156 341.3125 144.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 345.039062 149.089844 C 345.039062 150.984375 342.195312 150.984375 342.195312 149.089844 C 342.195312 147.195312 345.039062 147.195312 345.039062 149.089844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 363.121094 144.574219 C 363.121094 146.46875 360.277344 146.46875 360.277344 144.574219 C 360.277344 142.679688 363.121094 142.679688 363.121094 144.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.429688 134.15625 C 367.429688 136.050781 364.585938 136.050781 364.585938 134.15625 C 364.585938 132.261719 367.429688 132.261719 367.429688 134.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.257812 123.71875 C 357.257812 125.613281 354.414062 125.613281 354.414062 123.71875 C 354.414062 121.824219 357.257812 121.824219 357.257812 123.71875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.550781 142.152344 C 352.550781 144.046875 349.710938 144.046875 349.710938 142.152344 C 349.710938 140.257812 352.550781 140.257812 352.550781 142.152344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.945312 120.890625 C 365.945312 122.789062 363.101562 122.789062 363.101562 120.890625 C 363.101562 118.996094 365.945312 118.996094 365.945312 120.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 399.769531 116.296875 C 399.769531 118.191406 396.929688 118.191406 396.929688 116.296875 C 396.929688 114.402344 399.769531 114.402344 399.769531 116.296875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 350.398438 130.222656 C 350.398438 132.121094 347.554688 132.121094 347.554688 130.222656 C 347.554688 128.328125 350.398438 128.328125 350.398438 130.222656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 331.625 133.472656 C 331.625 135.367188 328.78125 135.367188 328.78125 133.472656 C 328.78125 131.578125 331.625 131.578125 331.625 133.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 347.984375 145.09375 C 347.984375 146.988281 345.140625 146.988281 345.140625 145.09375 C 345.140625 143.195312 347.984375 143.195312 347.984375 145.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.367188 143.191406 C 336.367188 145.085938 333.523438 145.085938 333.523438 143.191406 C 333.523438 141.296875 336.367188 141.296875 336.367188 143.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 350.128906 121.898438 C 350.128906 123.792969 347.285156 123.792969 347.285156 121.898438 C 347.285156 120.003906 350.128906 120.003906 350.128906 121.898438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.210938 131.941406 C 355.210938 133.835938 352.371094 133.835938 352.371094 131.941406 C 352.371094 130.046875 355.210938 130.046875 355.210938 131.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 383.300781 120.800781 C 383.300781 122.695312 380.457031 122.695312 380.457031 120.800781 C 380.457031 118.90625 383.300781 118.90625 383.300781 120.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 360.371094 127.082031 C 360.371094 128.976562 357.53125 128.976562 357.53125 127.082031 C 357.53125 125.1875 360.371094 125.1875 360.371094 127.082031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 335.289062 137.59375 C 335.289062 139.488281 332.445312 139.488281 332.445312 137.59375 C 332.445312 135.699219 335.289062 135.699219 335.289062 137.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.871094 126.828125 C 365.871094 128.722656 363.027344 128.722656 363.027344 126.828125 C 363.027344 124.933594 365.871094 124.933594 365.871094 126.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 344.222656 160.382812 C 344.222656 162.277344 341.378906 162.277344 341.378906 160.382812 C 341.378906 158.488281 344.222656 158.488281 344.222656 160.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 390.28125 122.039062 C 390.28125 123.933594 387.4375 123.933594 387.4375 122.039062 C 387.4375 120.140625 390.28125 120.140625 390.28125 122.039062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 337.015625 130.246094 C 337.015625 132.140625 334.171875 132.140625 334.171875 130.246094 C 334.171875 128.351562 337.015625 128.351562 337.015625 130.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.855469 153.363281 C 333.855469 155.257812 331.015625 155.257812 331.015625 153.363281 C 331.015625 151.46875 333.855469 151.46875 333.855469 153.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.121094 129.171875 C 373.121094 131.066406 370.277344 131.066406 370.277344 129.171875 C 370.277344 127.277344 373.121094 127.277344 373.121094 129.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 359.519531 143.398438 C 359.519531 145.296875 356.675781 145.296875 356.675781 143.398438 C 356.675781 141.503906 359.519531 141.503906 359.519531 143.398438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 342.472656 153.023438 C 342.472656 154.917969 339.628906 154.917969 339.628906 153.023438 C 339.628906 151.128906 342.472656 151.128906 342.472656 153.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.367188 114.984375 C 373.367188 116.878906 370.523438 116.878906 370.523438 114.984375 C 370.523438 113.089844 373.367188 113.089844 373.367188 114.984375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 375.332031 114.8125 C 375.332031 116.707031 372.488281 116.707031 372.488281 114.8125 C 372.488281 112.917969 375.332031 112.917969 375.332031 114.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.464844 111.816406 C 357.464844 113.710938 354.621094 113.710938 354.621094 111.816406 C 354.621094 109.921875 357.464844 109.921875 357.464844 111.816406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 384.289062 120.175781 C 384.289062 122.074219 381.445312 122.074219 381.445312 120.175781 C 381.445312 118.28125 384.289062 118.28125 384.289062 120.175781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 341.761719 138.828125 C 341.761719 140.722656 338.917969 140.722656 338.917969 138.828125 C 338.917969 136.933594 341.761719 136.933594 341.761719 138.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 357.804688 142.378906 C 357.804688 144.273438 354.960938 144.273438 354.960938 142.378906 C 354.960938 140.480469 357.804688 140.480469 357.804688 142.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 336.90625 127.171875 C 336.90625 129.070312 334.066406 129.070312 334.066406 127.171875 C 334.066406 125.277344 336.90625 125.277344 336.90625 127.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 358.660156 150.804688 C 358.660156 152.703125 355.816406 152.703125 355.816406 150.804688 C 355.816406 148.910156 358.660156 148.910156 358.660156 150.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 391.105469 124.027344 C 391.105469 125.921875 388.265625 125.921875 388.265625 124.027344 C 388.265625 122.132812 391.105469 122.132812 391.105469 124.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 351.777344 131.902344 C 351.777344 133.796875 348.933594 133.796875 348.933594 131.902344 C 348.933594 130.007812 351.777344 130.007812 351.777344 131.902344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 367.007812 123.460938 C 367.007812 125.355469 364.164062 125.355469 364.164062 123.460938 C 364.164062 121.566406 367.007812 121.566406 367.007812 123.460938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 348.921875 140.941406 C 348.921875 142.835938 346.078125 142.835938 346.078125 140.941406 C 346.078125 139.046875 348.921875 139.046875 348.921875 140.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 343.410156 135.21875 C 343.410156 137.113281 340.570312 137.113281 340.570312 135.21875 C 340.570312 133.324219 343.410156 133.324219 343.410156 135.21875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 365.628906 137.707031 C 365.628906 139.601562 362.785156 139.601562 362.785156 137.707031 C 362.785156 135.8125 365.628906 135.8125 365.628906 137.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 373.089844 118.300781 C 373.089844 120.195312 370.246094 120.195312 370.246094 118.300781 C 370.246094 116.40625 373.089844 116.40625 373.089844 118.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 378.410156 125.921875 C 378.410156 127.816406 375.566406 127.816406 375.566406 125.921875 C 375.566406 124.027344 378.410156 124.027344 378.410156 125.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 366.378906 118.214844 C 366.378906 120.109375 363.535156 120.109375 363.535156 118.214844 C 363.535156 116.320312 366.378906 116.320312 366.378906 118.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 362.292969 155.699219 C 362.292969 157.59375 359.453125 157.59375 359.453125 155.699219 C 359.453125 153.804688 362.292969 153.804688 362.292969 155.699219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 369.378906 147.070312 C 369.378906 148.96875 366.539062 148.96875 366.539062 147.070312 C 366.539062 145.175781 369.378906 145.175781 369.378906 147.070312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 352.488281 139.929688 C 352.488281 141.824219 349.648438 141.824219 349.648438 139.929688 C 349.648438 138.035156 352.488281 138.035156 352.488281 139.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 369.347656 123.402344 C 369.347656 125.300781 366.503906 125.300781 366.503906 123.402344 C 366.503906 121.507812 369.347656 121.507812 369.347656 123.402344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 343.03125 132.132812 C 343.03125 134.03125 340.1875 134.03125 340.1875 132.132812 C 340.1875 130.238281 343.03125 130.238281 343.03125 132.132812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 333.691406 149.527344 C 333.691406 151.421875 330.851562 151.421875 330.851562 149.527344 C 330.851562 147.632812 333.691406 147.632812 333.691406 149.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 355.480469 116.691406 C 355.480469 118.585938 352.636719 118.585938 352.636719 116.691406 C 352.636719 114.796875 355.480469 114.796875 355.480469 116.691406 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 398.609375 111.613281 L 397.695312 111.617188 L 396.78125 111.628906 L 395.867188 111.648438 L 394.953125 111.671875 L 393.125 111.734375 L 392.789062 111.746094 L 392.210938 111.769531 L 391.296875 111.804688 L 388.554688 111.921875 L 384.898438 112.09375 L 383.070312 112.1875 L 381.242188 112.289062 L 380.328125 112.34375 L 379.414062 112.402344 L 377.585938 112.527344 L 376.671875 112.597656 L 375.984375 112.652344 L 375.757812 112.667969 L 373.929688 112.824219 L 372.101562 112.988281 L 369.359375 113.257812 L 368.445312 113.351562 L 367.53125 113.449219 L 366.617188 113.542969 L 366.523438 113.554688 L 365.703125 113.640625 L 363.875 113.828125 L 362.960938 113.917969 L 362.046875 114.003906 L 361.132812 114.085938 L 360.21875 114.164062 L 359.304688 114.238281 L 357.476562 114.378906 L 356.5625 114.441406 L 356.265625 114.457031 L 355.648438 114.5 L 354.734375 114.554688 L 350.164062 114.808594 L 349.25 114.867188 L 348.335938 114.929688 L 347.421875 115.003906 L 346.507812 115.085938 L 345.59375 115.183594 L 344.679688 115.300781 L 344.246094 115.363281 L 343.765625 115.433594 L 342.851562 115.589844 L 341.9375 115.773438 L 341.023438 115.988281 L 340.109375 116.238281 L 340.023438 116.265625 L 339.195312 116.53125 L 338.28125 116.871094 L 337.582031 117.171875 L 337.367188 117.265625 L 336.453125 117.722656 L 335.839844 118.074219 L 335.539062 118.257812 L 334.625 118.878906 L 334.488281 118.980469 L 333.710938 119.605469 L 333.402344 119.882812 L 332.796875 120.464844 L 332.492188 120.789062 L 331.882812 121.492188 L 331.726562 121.691406 L 331.070312 122.59375 L 330.96875 122.746094 L 330.5 123.5 L 330.007812 124.402344 L 329.578125 125.308594 L 329.203125 126.210938 L 329.140625 126.378906 L 328.871094 127.117188 L 328.585938 128.019531 L 328.328125 128.921875 L 328.226562 129.332031 L 328.105469 129.828125 L 327.90625 130.730469 L 327.730469 131.636719 L 327.578125 132.539062 L 327.445312 133.445312 L 327.324219 134.347656 L 327.3125 134.441406 L 327.214844 135.25 L 327.121094 136.15625 L 327.039062 137.058594 L 326.964844 137.964844 L 326.902344 138.867188 L 326.84375 139.773438 L 326.796875 140.675781 L 326.753906 141.582031 L 326.71875 142.484375 L 326.691406 143.386719 L 326.671875 144.292969 L 326.65625 145.195312 L 326.652344 146.101562 L 326.652344 147.003906 L 326.664062 147.910156 L 326.683594 148.8125 L 326.714844 149.714844 L 326.761719 150.621094 L 326.816406 151.523438 L 326.886719 152.429688 L 326.972656 153.332031 L 327.074219 154.238281 L 327.191406 155.140625 L 327.3125 155.945312 L 327.328125 156.042969 L 327.480469 156.949219 L 327.65625 157.851562 L 327.847656 158.757812 L 328.058594 159.660156 L 328.226562 160.3125 L 328.292969 160.566406 L 328.546875 161.46875 L 328.816406 162.375 L 329.109375 163.277344 L 329.140625 163.371094 L 329.417969 164.179688 L 329.746094 165.085938 L 330.054688 165.898438 L 330.089844 165.988281 L 330.453125 166.894531 L 330.824219 167.796875 L 330.96875 168.140625 L 331.214844 168.703125 L 331.613281 169.605469 L 331.882812 170.210938 L 332.023438 170.507812 L 332.445312 171.414062 L 332.796875 172.167969 L 332.871094 172.316406 L 333.308594 173.222656 L 333.710938 174.050781 L 333.75 174.125 L 334.625 175.875 L 334.65625 175.933594 L 335.125 176.835938 L 335.539062 177.648438 L 335.589844 177.742188 L 336.074219 178.644531 L 336.453125 179.359375 L 336.5625 179.550781 L 337.070312 180.453125 L 337.367188 180.984375 L 337.59375 181.359375 L 338.140625 182.261719 L 338.28125 182.5 L 338.71875 183.167969 L 339.195312 183.890625 L 339.328125 184.070312 L 339.992188 184.972656 L 340.109375 185.136719 L 340.730469 185.878906 L 341.023438 186.230469 L 341.5625 186.78125 L 341.9375 187.167969 L 342.535156 187.6875 L 342.851562 187.960938 L 343.730469 188.589844 L 343.765625 188.617188 L 344.679688 189.152344 L 345.441406 189.496094 L 345.59375 189.5625 L 346.507812 189.875 L 347.421875 190.085938 L 348.335938 190.203125 L 349.25 190.234375 L 350.164062 190.1875 L 351.078125 190.0625 L 351.992188 189.859375 L 352.90625 189.585938 L 353.152344 189.496094 L 353.820312 189.246094 L 354.734375 188.835938 L 355.199219 188.589844 L 355.648438 188.355469 L 356.5625 187.808594 L 356.746094 187.6875 L 357.476562 187.199219 L 358.042969 186.78125 L 358.390625 186.523438 L 359.1875 185.878906 L 359.304688 185.78125 L 360.21875 184.980469 L 360.222656 184.972656 L 361.132812 184.117188 L 361.179688 184.070312 L 362.046875 183.199219 L 362.078125 183.167969 L 362.925781 182.261719 L 362.960938 182.222656 L 363.734375 181.359375 L 363.875 181.199219 L 364.515625 180.453125 L 364.789062 180.128906 L 365.269531 179.550781 L 365.703125 179.019531 L 366 178.644531 L 366.617188 177.871094 L 366.71875 177.742188 L 367.421875 176.835938 L 367.53125 176.699219 L 368.121094 175.933594 L 368.445312 175.507812 L 368.808594 175.03125 L 369.359375 174.304688 L 369.496094 174.125 L 370.179688 173.222656 L 370.273438 173.101562 L 370.875 172.316406 L 371.1875 171.910156 L 371.574219 171.414062 L 372.101562 170.738281 L 372.28125 170.507812 L 373.003906 169.605469 L 373.015625 169.589844 L 373.75 168.703125 L 373.929688 168.488281 L 374.523438 167.796875 L 374.84375 167.433594 L 375.328125 166.894531 L 375.757812 166.425781 L 376.167969 165.988281 L 376.671875 165.472656 L 377.058594 165.085938 L 377.585938 164.574219 L 378.003906 164.179688 L 378.5 163.734375 L 379.019531 163.277344 L 379.414062 162.945312 L 380.113281 162.375 L 380.328125 162.203125 L 381.242188 161.507812 L 381.292969 161.46875 L 382.15625 160.863281 L 382.585938 160.566406 L 383.070312 160.25 L 383.984375 159.660156 L 384.898438 159.113281 L 385.503906 158.757812 L 385.8125 158.582031 L 386.726562 158.074219 L 387.128906 157.851562 L 387.640625 157.582031 L 388.554688 157.101562 L 388.839844 156.949219 L 389.46875 156.632812 L 390.382812 156.164062 L 390.617188 156.042969 L 391.296875 155.707031 L 392.210938 155.246094 L 392.414062 155.140625 L 393.125 154.789062 L 394.039062 154.320312 L 394.199219 154.238281 L 394.953125 153.855469 L 395.867188 153.371094 L 395.9375 153.332031 L 396.78125 152.886719 L 397.605469 152.429688 L 397.695312 152.378906 L 398.609375 151.867188 L 399.191406 151.523438 L 399.523438 151.332031 L 400.4375 150.777344 L 400.6875 150.621094 L 401.351562 150.207031 L 402.09375 149.714844 L 402.265625 149.605469 L 403.179688 148.980469 L 403.417969 148.8125 L 404.09375 148.328125 L 404.65625 147.910156 L 405.007812 147.644531 L 405.816406 147.003906 L 405.921875 146.921875 L 406.835938 146.164062 L 406.90625 146.101562 L 407.75 145.363281 L 407.933594 145.195312 L 408.664062 144.511719 L 408.894531 144.292969 L 409.578125 143.609375 L 409.796875 143.386719 L 410.492188 142.648438 L 410.640625 142.484375 L 411.40625 141.613281 L 411.433594 141.582031 L 412.179688 140.675781 L 412.320312 140.5 L 412.878906 139.773438 L 413.234375 139.285156 L 413.53125 138.867188 L 414.136719 137.964844 L 414.148438 137.945312 L 414.707031 137.058594 L 415.0625 136.445312 L 415.230469 136.15625 L 415.710938 135.25 L 415.976562 134.710938 L 416.15625 134.347656 L 416.558594 133.445312 L 416.890625 132.609375 L 416.917969 132.539062 L 417.246094 131.636719 L 417.527344 130.730469 L 417.765625 129.828125 L 417.804688 129.660156 L 417.96875 128.921875 L 418.128906 128.019531 L 418.242188 127.117188 L 418.308594 126.210938 L 418.328125 125.308594 L 418.296875 124.402344 L 418.207031 123.5 L 418.0625 122.59375 L 417.851562 121.691406 L 417.804688 121.535156 L 417.574219 120.789062 L 417.21875 119.882812 L 416.890625 119.21875 L 416.769531 118.980469 L 416.222656 118.074219 L 415.976562 117.734375 L 415.550781 117.171875 L 415.0625 116.621094 L 414.726562 116.265625 L 414.148438 115.738281 L 413.710938 115.363281 L 413.234375 115.007812 L 412.421875 114.457031 L 412.320312 114.398438 L 411.40625 113.890625 L 410.714844 113.554688 L 410.492188 113.457031 L 409.578125 113.09375 L 408.664062 112.785156 L 408.210938 112.652344 L 407.75 112.527344 L 406.835938 112.3125 L 405.921875 112.136719 L 405.007812 111.992188 L 404.09375 111.875 L 403.179688 111.785156 L 402.6875 111.746094 L 402.265625 111.714844 L 401.351562 111.667969 L 400.4375 111.636719 L 399.523438 111.621094 L 398.609375 111.613281 "/> +<g clip-path="url(#clip34)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 238.265625 L 436.953125 238.265625 L 436.953125 40.371094 L 236.867188 40.371094 Z M 236.867188 238.265625 "/> +</g> +<g clip-path="url(#clip35)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 204.738281 L 642.519531 204.738281 "/> +</g> +<g clip-path="url(#clip36)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 155.675781 L 642.519531 155.675781 "/> +</g> +<g clip-path="url(#clip37)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 106.609375 L 642.519531 106.609375 "/> +</g> +<g clip-path="url(#clip38)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 57.546875 L 642.519531 57.546875 "/> +</g> +<g clip-path="url(#clip39)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 476.332031 238.265625 L 476.332031 40.371094 "/> +</g> +<g clip-path="url(#clip40)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 525.941406 238.265625 L 525.941406 40.371094 "/> +</g> +<g clip-path="url(#clip41)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 575.550781 238.265625 L 575.550781 40.371094 "/> +</g> +<g clip-path="url(#clip42)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:0.533489;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 625.15625 238.265625 L 625.15625 40.371094 "/> +</g> +<g clip-path="url(#clip43)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 229.273438 L 642.519531 229.273438 "/> +</g> +<g clip-path="url(#clip44)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 180.207031 L 642.519531 180.207031 "/> +</g> +<g clip-path="url(#clip45)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 131.140625 L 642.519531 131.140625 "/> +</g> +<g clip-path="url(#clip46)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 82.078125 L 642.519531 82.078125 "/> +</g> +<g clip-path="url(#clip47)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.527344 238.265625 L 451.527344 40.371094 "/> +</g> +<g clip-path="url(#clip48)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.136719 238.265625 L 501.136719 40.371094 "/> +</g> +<g clip-path="url(#clip49)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 550.746094 238.265625 L 550.746094 40.371094 "/> +</g> +<g clip-path="url(#clip50)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(92.156863%,92.156863%,92.156863%);stroke-opacity:1;stroke-miterlimit:10;" d="M 600.351562 238.265625 L 600.351562 40.371094 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 587.96875 79.371094 C 587.96875 81.265625 585.125 81.265625 585.125 79.371094 C 585.125 77.476562 587.96875 77.476562 587.96875 79.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.195312 68.570312 C 584.195312 70.464844 581.355469 70.464844 581.355469 68.570312 C 581.355469 66.675781 584.195312 66.675781 584.195312 68.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.519531 149.78125 C 533.519531 151.675781 530.679688 151.675781 530.679688 149.78125 C 530.679688 147.886719 533.519531 147.886719 533.519531 149.78125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 534.625 124.8125 C 534.625 126.707031 531.785156 126.707031 531.785156 124.8125 C 531.785156 122.917969 534.625 122.917969 534.625 124.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 573.707031 118.179688 C 573.707031 120.074219 570.867188 120.074219 570.867188 118.179688 C 570.867188 116.285156 573.707031 116.285156 573.707031 118.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 524.671875 149.300781 C 524.671875 151.199219 521.828125 151.199219 521.828125 149.300781 C 521.828125 147.40625 524.671875 147.40625 524.671875 149.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.988281 109.273438 C 583.988281 111.167969 581.144531 111.167969 581.144531 109.273438 C 581.144531 107.378906 583.988281 107.378906 583.988281 109.273438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 514.574219 170.378906 C 514.574219 172.273438 511.734375 172.273438 511.734375 170.378906 C 511.734375 168.484375 514.574219 168.484375 514.574219 170.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.144531 112.878906 C 561.144531 114.773438 558.304688 114.773438 558.304688 112.878906 C 558.304688 110.984375 561.144531 110.984375 561.144531 112.878906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 585.316406 113.429688 C 585.316406 115.324219 582.472656 115.324219 582.472656 113.429688 C 582.472656 111.535156 585.316406 111.535156 585.316406 113.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.605469 92.929688 C 568.605469 94.824219 565.765625 94.824219 565.765625 92.929688 C 565.765625 91.035156 568.605469 91.035156 568.605469 92.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.25 164.003906 C 536.25 165.898438 533.40625 165.898438 533.40625 164.003906 C 533.40625 162.109375 536.25 162.109375 536.25 164.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.964844 106.011719 C 564.964844 107.910156 562.121094 107.910156 562.121094 106.011719 C 562.121094 104.117188 564.964844 104.117188 564.964844 106.011719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 505.6875 157.671875 C 505.6875 159.566406 502.84375 159.566406 502.84375 157.671875 C 502.84375 155.777344 505.6875 155.777344 505.6875 157.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 492.199219 184.289062 C 492.199219 186.183594 489.355469 186.183594 489.355469 184.289062 C 489.355469 182.394531 492.199219 182.394531 492.199219 184.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 558.808594 110.921875 C 558.808594 112.816406 555.964844 112.816406 555.964844 110.921875 C 555.964844 109.023438 558.808594 109.023438 558.808594 110.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 586.078125 104.710938 C 586.078125 106.605469 583.238281 106.605469 583.238281 104.710938 C 583.238281 102.816406 586.078125 102.816406 586.078125 104.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.558594 117.265625 C 569.558594 119.160156 566.714844 119.160156 566.714844 117.265625 C 566.714844 115.371094 569.558594 115.371094 569.558594 117.265625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.832031 109.628906 C 562.832031 111.523438 559.988281 111.523438 559.988281 109.628906 C 559.988281 107.734375 562.832031 107.734375 562.832031 109.628906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.402344 124.691406 C 539.402344 126.589844 536.558594 126.589844 536.558594 124.691406 C 536.558594 122.796875 539.402344 122.796875 539.402344 124.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 523.636719 154.839844 C 523.636719 156.734375 520.792969 156.734375 520.792969 154.839844 C 520.792969 152.945312 523.636719 152.945312 523.636719 154.839844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 495.042969 182.03125 C 495.042969 183.925781 492.199219 183.925781 492.199219 182.03125 C 492.199219 180.132812 495.042969 180.132812 495.042969 182.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.050781 92.921875 C 562.050781 94.816406 559.207031 94.816406 559.207031 92.921875 C 559.207031 91.027344 562.050781 91.027344 562.050781 92.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 549.6875 127.574219 C 549.6875 129.46875 546.847656 129.46875 546.847656 127.574219 C 546.847656 125.679688 549.6875 125.679688 549.6875 127.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.898438 98.179688 C 557.898438 100.074219 555.054688 100.074219 555.054688 98.179688 C 555.054688 96.285156 557.898438 96.285156 557.898438 98.179688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 509.136719 181.472656 C 509.136719 183.367188 506.296875 183.367188 506.296875 181.472656 C 506.296875 179.578125 509.136719 179.578125 509.136719 181.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 594.996094 77.003906 C 594.996094 78.898438 592.152344 78.898438 592.152344 77.003906 C 592.152344 75.109375 594.996094 75.109375 594.996094 77.003906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 522.03125 144.324219 C 522.03125 146.222656 519.1875 146.222656 519.1875 144.324219 C 519.1875 142.429688 522.03125 142.429688 522.03125 144.324219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 540.160156 118.664062 C 540.160156 120.558594 537.316406 120.558594 537.316406 118.664062 C 537.316406 116.769531 540.160156 116.769531 540.160156 118.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 570.703125 106.777344 C 570.703125 108.671875 567.859375 108.671875 567.859375 106.777344 C 567.859375 104.882812 570.703125 104.882812 570.703125 106.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.800781 114.195312 C 565.800781 116.089844 562.957031 116.089844 562.957031 114.195312 C 562.957031 112.300781 565.800781 112.300781 565.800781 114.195312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 519.035156 159.035156 C 519.035156 160.929688 516.195312 160.929688 516.195312 159.035156 C 516.195312 157.136719 519.035156 157.136719 519.035156 159.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 579.714844 88.59375 C 579.714844 90.488281 576.871094 90.488281 576.871094 88.59375 C 576.871094 86.699219 579.714844 86.699219 579.714844 88.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.042969 101.847656 C 583.042969 103.742188 580.199219 103.742188 580.199219 101.847656 C 580.199219 99.953125 583.042969 99.953125 583.042969 101.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 511.851562 169.621094 C 511.851562 171.515625 509.007812 171.515625 509.007812 169.621094 C 509.007812 167.726562 511.851562 167.726562 511.851562 169.621094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.238281 100.660156 C 537.238281 102.554688 534.394531 102.554688 534.394531 100.660156 C 534.394531 98.765625 537.238281 98.765625 537.238281 100.660156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 593.742188 103.964844 C 593.742188 105.859375 590.898438 105.859375 590.898438 103.964844 C 590.898438 102.070312 593.742188 102.070312 593.742188 103.964844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 511.390625 153.054688 C 511.390625 154.953125 508.546875 154.953125 508.546875 153.054688 C 508.546875 151.160156 511.390625 151.160156 511.390625 153.054688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 510.949219 182.804688 C 510.949219 184.699219 508.109375 184.699219 508.109375 182.804688 C 508.109375 180.910156 510.949219 180.910156 510.949219 182.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 532.816406 130.058594 C 532.816406 131.953125 529.972656 131.953125 529.972656 130.058594 C 529.972656 128.164062 532.816406 128.164062 532.816406 130.058594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 572.449219 107.5 C 572.449219 109.394531 569.605469 109.394531 569.605469 107.5 C 569.605469 105.605469 572.449219 105.605469 572.449219 107.5 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 534.390625 148.996094 C 534.390625 150.890625 531.546875 150.890625 531.546875 148.996094 C 531.546875 147.101562 534.390625 147.101562 534.390625 148.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.164062 123.417969 C 527.164062 125.3125 524.320312 125.3125 524.320312 123.417969 C 524.320312 121.523438 527.164062 121.523438 527.164062 123.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.972656 164.488281 C 508.972656 166.386719 506.128906 166.386719 506.128906 164.488281 C 506.128906 162.59375 508.972656 162.59375 508.972656 164.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.484375 171.449219 C 527.484375 173.34375 524.640625 173.34375 524.640625 171.449219 C 524.640625 169.554688 527.484375 169.554688 527.484375 171.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 497.769531 159.417969 C 497.769531 161.316406 494.925781 161.316406 494.925781 159.417969 C 494.925781 157.523438 497.769531 157.523438 497.769531 159.417969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 627.976562 79.414062 C 627.976562 81.308594 625.132812 81.308594 625.132812 79.414062 C 625.132812 77.515625 627.976562 77.515625 627.976562 79.414062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 532.457031 141.777344 C 532.457031 143.671875 529.613281 143.671875 529.613281 141.777344 C 529.613281 139.882812 532.457031 139.882812 532.457031 141.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.75 109.65625 C 548.75 111.550781 545.90625 111.550781 545.90625 109.65625 C 545.90625 107.761719 548.75 107.761719 548.75 109.65625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 538.414062 112.167969 C 538.414062 114.0625 535.570312 114.0625 535.570312 112.167969 C 535.570312 110.273438 538.414062 110.273438 538.414062 112.167969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 507.160156 147.097656 C 507.160156 148.992188 504.316406 148.992188 504.316406 147.097656 C 504.316406 145.203125 507.160156 145.203125 507.160156 147.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.933594 183.640625 C 526.933594 185.539062 524.089844 185.539062 524.089844 183.640625 C 524.089844 181.746094 526.933594 181.746094 526.933594 183.640625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 520.039062 143.277344 C 520.039062 145.171875 517.199219 145.171875 517.199219 143.277344 C 517.199219 141.382812 520.039062 141.382812 520.039062 143.277344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 592.667969 104.769531 C 592.667969 106.664062 589.824219 106.664062 589.824219 104.769531 C 589.824219 102.875 592.667969 102.875 592.667969 104.769531 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 528.128906 138.171875 C 528.128906 140.066406 525.289062 140.066406 525.289062 138.171875 C 525.289062 136.277344 528.128906 136.277344 528.128906 138.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 597.664062 90.324219 C 597.664062 92.21875 594.820312 92.21875 594.820312 90.324219 C 594.820312 88.429688 597.664062 88.429688 597.664062 90.324219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.523438 102.355469 C 580.523438 104.25 577.679688 104.25 577.679688 102.355469 C 577.679688 100.460938 580.523438 100.460938 580.523438 102.355469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 588.425781 85.035156 C 588.425781 86.929688 585.582031 86.929688 585.582031 85.035156 C 585.582031 83.136719 588.425781 83.136719 588.425781 85.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 520.867188 141.714844 C 520.867188 143.609375 518.023438 143.609375 518.023438 141.714844 C 518.023438 139.816406 520.867188 139.816406 520.867188 141.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 559.808594 107.527344 C 559.808594 109.421875 556.964844 109.421875 556.964844 107.527344 C 556.964844 105.632812 559.808594 105.632812 559.808594 107.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 570.378906 83.214844 C 570.378906 85.109375 567.535156 85.109375 567.535156 83.214844 C 567.535156 81.320312 570.378906 81.320312 570.378906 83.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.101562 104.921875 C 568.101562 106.816406 565.257812 106.816406 565.257812 104.921875 C 565.257812 103.027344 568.101562 103.027344 568.101562 104.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 592.28125 109.867188 C 592.28125 111.761719 589.441406 111.761719 589.441406 109.867188 C 589.441406 107.96875 592.28125 107.96875 592.28125 109.867188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 579.476562 95.027344 C 579.476562 96.925781 576.632812 96.925781 576.632812 95.027344 C 576.632812 93.132812 579.476562 93.132812 579.476562 95.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 581.640625 95.148438 C 581.640625 97.042969 578.796875 97.042969 578.796875 95.148438 C 578.796875 93.253906 581.640625 93.253906 581.640625 95.148438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 530.433594 142.480469 C 530.433594 144.375 527.589844 144.375 527.589844 142.480469 C 527.589844 140.585938 530.433594 140.585938 530.433594 142.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.367188 132.472656 C 527.367188 134.367188 524.523438 134.367188 524.523438 132.472656 C 524.523438 130.578125 527.367188 130.578125 527.367188 132.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 510.867188 172.753906 C 510.867188 174.648438 508.023438 174.648438 508.023438 172.753906 C 508.023438 170.859375 510.867188 170.859375 510.867188 172.753906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 563.785156 110.933594 C 563.785156 112.828125 560.945312 112.828125 560.945312 110.933594 C 560.945312 109.039062 563.785156 109.039062 563.785156 110.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 504.371094 173.789062 C 504.371094 175.683594 501.53125 175.683594 501.53125 173.789062 C 501.53125 171.894531 504.371094 171.894531 504.371094 173.789062 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 520.214844 129.882812 C 520.214844 131.777344 517.371094 131.777344 517.371094 129.882812 C 517.371094 127.988281 520.214844 127.988281 520.214844 129.882812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 512.238281 152.453125 C 512.238281 154.347656 509.394531 154.347656 509.394531 152.453125 C 509.394531 150.554688 512.238281 150.554688 512.238281 152.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 513.832031 132.765625 C 513.832031 134.660156 510.988281 134.660156 510.988281 132.765625 C 510.988281 130.871094 513.832031 130.871094 513.832031 132.765625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.460938 92.148438 C 562.460938 94.042969 559.617188 94.042969 559.617188 92.148438 C 559.617188 90.253906 562.460938 90.253906 562.460938 92.148438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 529.839844 136.242188 C 529.839844 138.140625 527 138.140625 527 136.242188 C 527 134.347656 529.839844 134.347656 529.839844 136.242188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.011719 168.792969 C 535.011719 170.6875 532.167969 170.6875 532.167969 168.792969 C 532.167969 166.898438 535.011719 166.898438 535.011719 168.792969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.785156 141.449219 C 526.785156 143.347656 523.941406 143.347656 523.941406 141.449219 C 523.941406 139.554688 526.785156 139.554688 526.785156 141.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 528 116.410156 C 528 118.304688 525.15625 118.304688 525.15625 116.410156 C 525.15625 114.515625 528 114.515625 528 116.410156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 518.777344 140.398438 C 518.777344 142.292969 515.933594 142.292969 515.933594 140.398438 C 515.933594 138.503906 518.777344 138.503906 518.777344 140.398438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 578.078125 109.363281 C 578.078125 111.257812 575.234375 111.257812 575.234375 109.363281 C 575.234375 107.464844 578.078125 107.464844 578.078125 109.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.652344 93.421875 C 569.652344 95.316406 566.808594 95.316406 566.808594 93.421875 C 566.808594 91.527344 569.652344 91.527344 569.652344 93.421875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 598.472656 76.753906 C 598.472656 78.648438 595.628906 78.648438 595.628906 76.753906 C 595.628906 74.859375 598.472656 74.859375 598.472656 76.753906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 604.863281 86.03125 C 604.863281 87.925781 602.019531 87.925781 602.019531 86.03125 C 602.019531 84.136719 604.863281 84.136719 604.863281 86.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 566.339844 95.523438 C 566.339844 97.417969 563.5 97.417969 563.5 95.523438 C 563.5 93.625 566.339844 93.625 566.339844 95.523438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.546875 105.648438 C 544.546875 107.542969 541.703125 107.542969 541.703125 105.648438 C 541.703125 103.75 544.546875 103.75 544.546875 105.648438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 589.511719 73.699219 C 589.511719 75.59375 586.671875 75.59375 586.671875 73.699219 C 586.671875 71.804688 589.511719 71.804688 589.511719 73.699219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.675781 138.253906 C 539.675781 140.148438 536.832031 140.148438 536.832031 138.253906 C 536.832031 136.359375 539.675781 136.359375 539.675781 138.253906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.089844 134.746094 C 527.089844 136.640625 524.246094 136.640625 524.246094 134.746094 C 524.246094 132.851562 527.089844 132.851562 527.089844 134.746094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.921875 107.378906 C 571.921875 109.273438 569.082031 109.273438 569.082031 107.378906 C 569.082031 105.484375 571.921875 105.484375 571.921875 107.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.386719 102.488281 C 568.386719 104.382812 565.542969 104.382812 565.542969 102.488281 C 565.542969 100.59375 568.386719 100.59375 568.386719 102.488281 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.8125 114.648438 C 556.8125 116.542969 553.96875 116.542969 553.96875 114.648438 C 553.96875 112.753906 556.8125 112.753906 556.8125 114.648438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.085938 106.933594 C 537.085938 108.828125 534.242188 108.828125 534.242188 106.933594 C 534.242188 105.039062 537.085938 105.039062 537.085938 106.933594 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 519.058594 149.824219 C 519.058594 151.71875 516.214844 151.71875 516.214844 149.824219 C 516.214844 147.925781 519.058594 147.925781 519.058594 149.824219 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 597.644531 78.960938 C 597.644531 80.855469 594.800781 80.855469 594.800781 78.960938 C 594.800781 77.0625 597.644531 77.0625 597.644531 78.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.605469 164.429688 C 526.605469 166.324219 523.765625 166.324219 523.765625 164.429688 C 523.765625 162.535156 526.605469 162.535156 526.605469 164.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.46875 107.710938 C 562.46875 109.605469 559.625 109.605469 559.625 107.710938 C 559.625 105.816406 562.46875 105.816406 562.46875 107.710938 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.175781 96.027344 C 561.175781 97.921875 558.332031 97.921875 558.332031 96.027344 C 558.332031 94.128906 561.175781 94.128906 561.175781 96.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 577.640625 99.542969 C 577.640625 101.4375 574.796875 101.4375 574.796875 99.542969 C 574.796875 97.648438 577.640625 97.648438 577.640625 99.542969 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 559.699219 120.03125 C 559.699219 121.925781 556.855469 121.925781 556.855469 120.03125 C 556.855469 118.136719 559.699219 118.136719 559.699219 120.03125 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.996094 88.246094 C 557.996094 90.140625 555.152344 90.140625 555.152344 88.246094 C 555.152344 86.351562 557.996094 86.351562 557.996094 88.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 522.753906 144.136719 C 522.753906 146.03125 519.910156 146.03125 519.910156 144.136719 C 519.910156 142.242188 522.753906 142.242188 522.753906 144.136719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 528.074219 139.214844 C 528.074219 141.109375 525.230469 141.109375 525.230469 139.214844 C 525.230469 137.320312 528.074219 137.320312 528.074219 139.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 588.007812 101.117188 C 588.007812 103.015625 585.164062 103.015625 585.164062 101.117188 C 585.164062 99.222656 588.007812 99.222656 588.007812 101.117188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 578.5625 107.0625 C 578.5625 108.960938 575.71875 108.960938 575.71875 107.0625 C 575.71875 105.167969 578.5625 105.167969 578.5625 107.0625 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 522.441406 143.660156 C 522.441406 145.554688 519.597656 145.554688 519.597656 143.660156 C 519.597656 141.765625 522.441406 141.765625 522.441406 143.660156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.554688 169.570312 C 526.554688 171.464844 523.714844 171.464844 523.714844 169.570312 C 523.714844 167.675781 526.554688 167.675781 526.554688 169.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.808594 104.761719 C 569.808594 106.65625 566.964844 106.65625 566.964844 104.761719 C 566.964844 102.867188 569.808594 102.867188 569.808594 104.761719 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 572.636719 84.382812 C 572.636719 86.277344 569.792969 86.277344 569.792969 84.382812 C 569.792969 82.488281 572.636719 82.488281 572.636719 84.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.5 115.035156 C 553.5 116.929688 550.660156 116.929688 550.660156 115.035156 C 550.660156 113.140625 553.5 113.140625 553.5 115.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 493.023438 171.734375 C 493.023438 173.628906 490.183594 173.628906 490.183594 171.734375 C 490.183594 169.839844 493.023438 169.839844 493.023438 171.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 518.671875 145.617188 C 518.671875 147.511719 515.832031 147.511719 515.832031 145.617188 C 515.832031 143.722656 518.671875 143.722656 518.671875 145.617188 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.570312 84.332031 C 557.570312 86.226562 554.726562 86.226562 554.726562 84.332031 C 554.726562 82.433594 557.570312 82.433594 557.570312 84.332031 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 508.382812 184.023438 C 508.382812 185.917969 505.539062 185.917969 505.539062 184.023438 C 505.539062 182.128906 508.382812 182.128906 508.382812 184.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 581.15625 67.226562 C 581.15625 69.121094 578.3125 69.121094 578.3125 67.226562 C 578.3125 65.328125 581.15625 65.328125 581.15625 67.226562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 526.851562 145.847656 C 526.851562 147.742188 524.007812 147.742188 524.007812 145.847656 C 524.007812 143.953125 526.851562 143.953125 526.851562 145.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.296875 102.925781 C 571.296875 104.820312 568.453125 104.820312 568.453125 102.925781 C 568.453125 101.03125 571.296875 101.03125 571.296875 102.925781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.816406 88.480469 C 554.816406 90.378906 551.972656 90.378906 551.972656 88.480469 C 551.972656 86.585938 554.816406 86.585938 554.816406 88.480469 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 527.277344 125.300781 C 527.277344 127.195312 524.4375 127.195312 524.4375 125.300781 C 524.4375 123.40625 527.277344 123.40625 527.277344 125.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.714844 69.722656 C 583.714844 71.617188 580.871094 71.617188 580.871094 69.722656 C 580.871094 67.828125 583.714844 67.828125 583.714844 69.722656 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 599.417969 110.339844 C 599.417969 112.234375 596.578125 112.234375 596.578125 110.339844 C 596.578125 108.445312 599.417969 108.445312 599.417969 110.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 545.871094 109.09375 C 545.871094 110.988281 543.03125 110.988281 543.03125 109.09375 C 543.03125 107.199219 545.871094 107.199219 545.871094 109.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 556.957031 117.695312 C 556.957031 119.589844 554.113281 119.589844 554.113281 117.695312 C 554.113281 115.800781 556.957031 115.800781 556.957031 117.695312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 576.40625 124.371094 C 576.40625 126.265625 573.5625 126.265625 573.5625 124.371094 C 573.5625 122.476562 576.40625 122.476562 576.40625 124.371094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 579.632812 118.199219 C 579.632812 120.09375 576.789062 120.09375 576.789062 118.199219 C 576.789062 116.304688 579.632812 116.304688 579.632812 118.199219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 578.660156 126.621094 C 578.660156 128.515625 575.820312 128.515625 575.820312 126.621094 C 575.820312 124.726562 578.660156 124.726562 578.660156 126.621094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.960938 134.777344 C 569.960938 136.675781 567.117188 136.675781 567.117188 134.777344 C 567.117188 132.882812 569.960938 132.882812 569.960938 134.777344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 573.636719 117.707031 C 573.636719 119.601562 570.796875 119.601562 570.796875 117.707031 C 570.796875 115.808594 573.636719 115.808594 573.636719 117.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 552.285156 135.964844 C 552.285156 137.859375 549.445312 137.859375 549.445312 135.964844 C 549.445312 134.070312 552.285156 134.070312 552.285156 135.964844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.636719 121.570312 C 557.636719 123.464844 554.792969 123.464844 554.792969 121.570312 C 554.792969 119.671875 557.636719 119.671875 557.636719 121.570312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.421875 134.097656 C 580.421875 135.992188 577.582031 135.992188 577.582031 134.097656 C 577.582031 132.203125 580.421875 132.203125 580.421875 134.097656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 563.035156 137.074219 C 563.035156 138.96875 560.191406 138.96875 560.191406 137.074219 C 560.191406 135.179688 563.035156 135.179688 563.035156 137.074219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.828125 132.234375 C 544.828125 134.128906 541.984375 134.128906 541.984375 132.234375 C 541.984375 130.339844 544.828125 130.339844 544.828125 132.234375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.757812 130.191406 C 564.757812 132.089844 561.914062 132.089844 561.914062 130.191406 C 561.914062 128.296875 564.757812 128.296875 564.757812 130.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.125 139.453125 C 561.125 141.347656 558.28125 141.347656 558.28125 139.453125 C 558.28125 137.554688 561.125 137.554688 561.125 139.453125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.996094 136.714844 C 561.996094 138.609375 559.152344 138.609375 559.152344 136.714844 C 559.152344 134.820312 561.996094 134.820312 561.996094 136.714844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 597.34375 136.960938 C 597.34375 138.855469 594.5 138.855469 594.5 136.960938 C 594.5 135.066406 597.34375 135.066406 597.34375 136.960938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.613281 126.449219 C 560.613281 128.34375 557.773438 128.34375 557.773438 126.449219 C 557.773438 124.554688 560.613281 124.554688 560.613281 126.449219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 550.746094 103.59375 C 550.746094 105.488281 547.902344 105.488281 547.902344 103.59375 C 547.902344 101.699219 550.746094 101.699219 550.746094 103.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.136719 135.386719 C 547.136719 137.285156 544.292969 137.285156 544.292969 135.386719 C 544.292969 133.492188 547.136719 133.492188 547.136719 135.386719 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.886719 148.804688 C 562.886719 150.699219 560.046875 150.699219 560.046875 148.804688 C 560.046875 146.90625 562.886719 146.90625 562.886719 148.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.675781 120.84375 C 584.675781 122.738281 581.832031 122.738281 581.832031 120.84375 C 581.832031 118.949219 584.675781 118.949219 584.675781 120.84375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.8125 139.078125 C 535.8125 140.972656 532.96875 140.972656 532.96875 139.078125 C 532.96875 137.183594 535.8125 137.183594 535.8125 139.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.210938 115.847656 C 564.210938 117.742188 561.367188 117.742188 561.367188 115.847656 C 561.367188 113.953125 564.210938 113.953125 564.210938 115.847656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.925781 145.289062 C 554.925781 147.1875 552.085938 147.1875 552.085938 145.289062 C 552.085938 143.394531 554.925781 143.394531 554.925781 145.289062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.453125 162.074219 C 542.453125 163.96875 539.609375 163.96875 539.609375 162.074219 C 539.609375 160.179688 542.453125 160.179688 542.453125 162.074219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.375 148.460938 C 555.375 150.359375 552.53125 150.359375 552.53125 148.460938 C 552.53125 146.566406 555.375 146.566406 555.375 148.460938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 532.527344 109.023438 C 532.527344 110.917969 529.683594 110.917969 529.683594 109.023438 C 529.683594 107.128906 532.527344 107.128906 532.527344 109.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 599.242188 116.519531 C 599.242188 118.414062 596.398438 118.414062 596.398438 116.519531 C 596.398438 114.625 599.242188 114.625 599.242188 116.519531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.679688 118.25 C 569.679688 120.144531 566.835938 120.144531 566.835938 118.25 C 566.835938 116.355469 569.679688 116.355469 569.679688 118.25 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 574.015625 121.953125 C 574.015625 123.847656 571.175781 123.847656 571.175781 121.953125 C 571.175781 120.054688 574.015625 120.054688 574.015625 121.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.609375 131.816406 C 584.609375 133.710938 581.765625 133.710938 581.765625 131.816406 C 581.765625 129.921875 584.609375 129.921875 584.609375 131.816406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.359375 137.679688 C 539.359375 139.574219 536.519531 139.574219 536.519531 137.679688 C 536.519531 135.785156 539.359375 135.785156 539.359375 137.679688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 589.496094 119.894531 C 589.496094 121.789062 586.652344 121.789062 586.652344 119.894531 C 586.652344 118 589.496094 118 589.496094 119.894531 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.617188 117.691406 C 562.617188 119.589844 559.773438 119.589844 559.773438 117.691406 C 559.773438 115.796875 562.617188 115.796875 562.617188 117.691406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 541.238281 152.078125 C 541.238281 153.972656 538.394531 153.972656 538.394531 152.078125 C 538.394531 150.183594 541.238281 150.183594 541.238281 152.078125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.675781 120.316406 C 544.675781 122.210938 541.832031 122.210938 541.832031 120.316406 C 541.832031 118.421875 544.675781 118.421875 544.675781 120.316406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 545.449219 131.335938 C 545.449219 133.234375 542.609375 133.234375 542.609375 131.335938 C 542.609375 129.441406 545.449219 129.441406 545.449219 131.335938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 533.582031 141.765625 C 533.582031 143.660156 530.738281 143.660156 530.738281 141.765625 C 530.738281 139.871094 533.582031 139.871094 533.582031 141.765625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.433594 135.996094 C 547.433594 137.890625 544.589844 137.890625 544.589844 135.996094 C 544.589844 134.101562 547.433594 134.101562 547.433594 135.996094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 569.859375 122.246094 C 569.859375 124.144531 567.015625 124.144531 567.015625 122.246094 C 567.015625 120.351562 569.859375 120.351562 569.859375 122.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 522.855469 122.945312 C 522.855469 124.84375 520.011719 124.84375 520.011719 122.945312 C 520.011719 121.050781 522.855469 121.050781 522.855469 122.945312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 567.035156 140.953125 C 567.035156 142.847656 564.191406 142.847656 564.191406 140.953125 C 564.191406 139.058594 567.035156 139.058594 567.035156 140.953125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.074219 152.585938 C 551.074219 154.480469 548.230469 154.480469 548.230469 152.585938 C 548.230469 150.691406 551.074219 150.691406 551.074219 152.585938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.796875 131.664062 C 571.796875 133.558594 568.953125 133.558594 568.953125 131.664062 C 568.953125 129.765625 571.796875 129.765625 571.796875 131.664062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.449219 152.257812 C 539.449219 154.152344 536.609375 154.152344 536.609375 152.257812 C 536.609375 150.363281 539.449219 150.363281 539.449219 152.257812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.546875 141.09375 C 544.546875 142.988281 541.707031 142.988281 541.707031 141.09375 C 541.707031 139.199219 544.546875 139.199219 544.546875 141.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557 135.890625 C 557 137.785156 554.15625 137.785156 554.15625 135.890625 C 554.15625 133.996094 557 133.996094 557 135.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 543.710938 126.875 C 543.710938 128.769531 540.867188 128.769531 540.867188 126.875 C 540.867188 124.980469 543.710938 124.980469 543.710938 126.875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 566.894531 132.285156 C 566.894531 134.179688 564.050781 134.179688 564.050781 132.285156 C 564.050781 130.390625 566.894531 130.390625 566.894531 132.285156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 558.4375 134.058594 C 558.4375 135.953125 555.59375 135.953125 555.59375 134.058594 C 555.59375 132.164062 558.4375 132.164062 558.4375 134.058594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.535156 181.4375 C 548.535156 183.335938 545.695312 183.335938 545.695312 181.4375 C 545.695312 179.542969 548.535156 179.542969 548.535156 181.4375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.71875 113.292969 C 544.71875 115.1875 541.875 115.1875 541.875 113.292969 C 541.875 111.398438 544.71875 111.398438 544.71875 113.292969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.117188 126.992188 C 544.117188 128.886719 541.273438 128.886719 541.273438 126.992188 C 541.273438 125.097656 544.117188 125.097656 544.117188 126.992188 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 603.472656 115.476562 C 603.472656 117.371094 600.632812 117.371094 600.632812 115.476562 C 600.632812 113.582031 603.472656 113.582031 603.472656 115.476562 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 549.757812 111.878906 C 549.757812 113.773438 546.914062 113.773438 546.914062 111.878906 C 546.914062 109.984375 549.757812 109.984375 549.757812 111.878906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 546.449219 132 C 546.449219 133.894531 543.605469 133.894531 543.605469 132 C 543.605469 130.105469 546.449219 130.105469 546.449219 132 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.792969 117.441406 C 583.792969 119.335938 580.949219 119.335938 580.949219 117.441406 C 580.949219 115.542969 583.792969 115.542969 583.792969 117.441406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 546.03125 135.234375 C 546.03125 137.132812 543.1875 137.132812 543.1875 135.234375 C 543.1875 133.339844 546.03125 133.339844 546.03125 135.234375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.078125 134.734375 C 555.078125 136.628906 552.238281 136.628906 552.238281 134.734375 C 552.238281 132.835938 555.078125 132.835938 555.078125 134.734375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.050781 153.921875 C 548.050781 155.816406 545.207031 155.816406 545.207031 153.921875 C 545.207031 152.023438 548.050781 152.023438 548.050781 153.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.089844 113.429688 C 580.089844 115.324219 577.25 115.324219 577.25 113.429688 C 577.25 111.535156 580.089844 111.535156 580.089844 113.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 540.722656 137.035156 C 540.722656 138.929688 537.878906 138.929688 537.878906 137.035156 C 537.878906 135.136719 540.722656 135.136719 540.722656 137.035156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.179688 120.785156 C 562.179688 122.679688 559.335938 122.679688 559.335938 120.785156 C 559.335938 118.886719 562.179688 118.886719 562.179688 120.785156 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.582031 124.304688 C 560.582031 126.199219 557.738281 126.199219 557.738281 124.304688 C 557.738281 122.410156 560.582031 122.410156 560.582031 124.304688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.441406 129.339844 C 568.441406 131.238281 565.597656 131.238281 565.597656 129.339844 C 565.597656 127.445312 568.441406 127.445312 568.441406 129.339844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.886719 134.6875 C 562.886719 136.582031 560.042969 136.582031 560.042969 134.6875 C 560.042969 132.792969 562.886719 132.792969 562.886719 134.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 558.832031 124.988281 C 558.832031 126.882812 555.992188 126.882812 555.992188 124.988281 C 555.992188 123.089844 558.832031 123.089844 558.832031 124.988281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 532.367188 125.390625 C 532.367188 127.285156 529.523438 127.285156 529.523438 125.390625 C 529.523438 123.496094 532.367188 123.496094 532.367188 125.390625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.621094 139.554688 C 568.621094 141.449219 565.777344 141.449219 565.777344 139.554688 C 565.777344 137.660156 568.621094 137.660156 568.621094 139.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 579.511719 117.175781 C 579.511719 119.070312 576.671875 119.070312 576.671875 117.175781 C 576.671875 115.277344 579.511719 115.277344 579.511719 117.175781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 574.359375 140.007812 C 574.359375 141.90625 571.519531 141.90625 571.519531 140.007812 C 571.519531 138.113281 574.359375 138.113281 574.359375 140.007812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.179688 120.667969 C 551.179688 122.5625 548.335938 122.5625 548.335938 120.667969 C 548.335938 118.773438 551.179688 118.773438 551.179688 120.667969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 544.367188 157.429688 C 544.367188 159.324219 541.523438 159.324219 541.523438 157.429688 C 541.523438 155.535156 544.367188 155.535156 544.367188 157.429688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 584.089844 132.75 C 584.089844 134.644531 581.25 134.644531 581.25 132.75 C 581.25 130.855469 584.089844 130.855469 584.089844 132.75 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.824219 175.34375 C 536.824219 177.242188 533.980469 177.242188 533.980469 175.34375 C 533.980469 173.449219 536.824219 173.449219 536.824219 175.34375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.445312 130.203125 C 542.445312 132.097656 539.601562 132.097656 539.601562 130.203125 C 539.601562 128.308594 542.445312 128.308594 542.445312 130.203125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 531.699219 156.671875 C 531.699219 158.566406 528.859375 158.566406 528.859375 156.671875 C 528.859375 154.777344 531.699219 154.777344 531.699219 156.671875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 536.878906 152.6875 C 536.878906 154.582031 534.035156 154.582031 534.035156 152.6875 C 534.035156 150.792969 536.878906 150.792969 536.878906 152.6875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 551.257812 160.109375 C 551.257812 162.003906 548.417969 162.003906 548.417969 160.109375 C 548.417969 158.210938 551.257812 158.210938 551.257812 160.109375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 552.734375 113.066406 C 552.734375 114.964844 549.890625 114.964844 549.890625 113.066406 C 549.890625 111.171875 552.734375 111.171875 552.734375 113.066406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 535.695312 129.984375 C 535.695312 131.878906 532.851562 131.878906 532.851562 129.984375 C 532.851562 128.085938 535.695312 128.085938 535.695312 129.984375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 546.882812 144.554688 C 546.882812 146.449219 544.039062 146.449219 544.039062 144.554688 C 544.039062 142.660156 546.882812 142.660156 546.882812 144.554688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 550.605469 149.089844 C 550.605469 150.984375 547.765625 150.984375 547.765625 149.089844 C 547.765625 147.195312 550.605469 147.195312 550.605469 149.089844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 568.6875 144.574219 C 568.6875 146.46875 565.84375 146.46875 565.84375 144.574219 C 565.84375 142.679688 568.6875 142.679688 568.6875 144.574219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 572.996094 134.15625 C 572.996094 136.050781 570.152344 136.050781 570.152344 134.15625 C 570.152344 132.261719 572.996094 132.261719 572.996094 134.15625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 562.824219 123.71875 C 562.824219 125.613281 559.980469 125.613281 559.980469 123.71875 C 559.980469 121.824219 562.824219 121.824219 562.824219 123.71875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 558.121094 142.152344 C 558.121094 144.046875 555.277344 144.046875 555.277344 142.152344 C 555.277344 140.257812 558.121094 140.257812 558.121094 142.152344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.511719 120.890625 C 571.511719 122.789062 568.667969 122.789062 568.667969 120.890625 C 568.667969 118.996094 571.511719 118.996094 571.511719 120.890625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 605.339844 116.296875 C 605.339844 118.191406 602.496094 118.191406 602.496094 116.296875 C 602.496094 114.402344 605.339844 114.402344 605.339844 116.296875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.964844 130.222656 C 555.964844 132.121094 553.121094 132.121094 553.121094 130.222656 C 553.121094 128.328125 555.964844 128.328125 555.964844 130.222656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 537.191406 133.472656 C 537.191406 135.367188 534.347656 135.367188 534.347656 133.472656 C 534.347656 131.578125 537.191406 131.578125 537.191406 133.472656 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 553.550781 145.09375 C 553.550781 146.988281 550.707031 146.988281 550.707031 145.09375 C 550.707031 143.195312 553.550781 143.195312 553.550781 145.09375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 541.933594 143.191406 C 541.933594 145.085938 539.089844 145.085938 539.089844 143.191406 C 539.089844 141.296875 541.933594 141.296875 541.933594 143.191406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 555.695312 121.898438 C 555.695312 123.792969 552.855469 123.792969 552.855469 121.898438 C 552.855469 120.003906 555.695312 120.003906 555.695312 121.898438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 560.78125 131.941406 C 560.78125 133.835938 557.9375 133.835938 557.9375 131.941406 C 557.9375 130.046875 560.78125 130.046875 560.78125 131.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 588.867188 120.800781 C 588.867188 122.695312 586.027344 122.695312 586.027344 120.800781 C 586.027344 118.90625 588.867188 118.90625 588.867188 120.800781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.941406 127.082031 C 565.941406 128.976562 563.097656 128.976562 563.097656 127.082031 C 563.097656 125.1875 565.941406 125.1875 565.941406 127.082031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 540.855469 137.59375 C 540.855469 139.488281 538.015625 139.488281 538.015625 137.59375 C 538.015625 135.699219 540.855469 135.699219 540.855469 137.59375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.4375 126.828125 C 571.4375 128.722656 568.59375 128.722656 568.59375 126.828125 C 568.59375 124.933594 571.4375 124.933594 571.4375 126.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 549.789062 160.382812 C 549.789062 162.277344 546.949219 162.277344 546.949219 160.382812 C 546.949219 158.488281 549.789062 158.488281 549.789062 160.382812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 595.847656 122.039062 C 595.847656 123.933594 593.003906 123.933594 593.003906 122.039062 C 593.003906 120.140625 595.847656 120.140625 595.847656 122.039062 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.582031 130.246094 C 542.582031 132.140625 539.738281 132.140625 539.738281 130.246094 C 539.738281 128.351562 542.582031 128.351562 542.582031 130.246094 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.425781 153.363281 C 539.425781 155.257812 536.582031 155.257812 536.582031 153.363281 C 536.582031 151.46875 539.425781 151.46875 539.425781 153.363281 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 578.6875 129.171875 C 578.6875 131.066406 575.84375 131.066406 575.84375 129.171875 C 575.84375 127.277344 578.6875 127.277344 578.6875 129.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 565.085938 143.398438 C 565.085938 145.296875 562.246094 145.296875 562.246094 143.398438 C 562.246094 141.503906 565.085938 141.503906 565.085938 143.398438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.039062 153.023438 C 548.039062 154.917969 545.195312 154.917969 545.195312 153.023438 C 545.195312 151.128906 548.039062 151.128906 548.039062 153.023438 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 578.933594 114.984375 C 578.933594 116.878906 576.09375 116.878906 576.09375 114.984375 C 576.09375 113.089844 578.933594 113.089844 578.933594 114.984375 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 580.898438 114.8125 C 580.898438 116.707031 578.058594 116.707031 578.058594 114.8125 C 578.058594 112.917969 580.898438 112.917969 580.898438 114.8125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 563.03125 111.816406 C 563.03125 113.710938 560.1875 113.710938 560.1875 111.816406 C 560.1875 109.921875 563.03125 109.921875 563.03125 111.816406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 589.855469 120.175781 C 589.855469 122.074219 587.011719 122.074219 587.011719 120.175781 C 587.011719 118.28125 589.855469 118.28125 589.855469 120.175781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 547.328125 138.828125 C 547.328125 140.722656 544.484375 140.722656 544.484375 138.828125 C 544.484375 136.933594 547.328125 136.933594 547.328125 138.828125 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 563.371094 142.378906 C 563.371094 144.273438 560.527344 144.273438 560.527344 142.378906 C 560.527344 140.480469 563.371094 140.480469 563.371094 142.378906 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 542.472656 127.171875 C 542.472656 129.070312 539.632812 129.070312 539.632812 127.171875 C 539.632812 125.277344 542.472656 125.277344 542.472656 127.171875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 564.226562 150.804688 C 564.226562 152.703125 561.386719 152.703125 561.386719 150.804688 C 561.386719 148.910156 564.226562 148.910156 564.226562 150.804688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 596.675781 124.027344 C 596.675781 125.921875 593.832031 125.921875 593.832031 124.027344 C 593.832031 122.132812 596.675781 122.132812 596.675781 124.027344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 557.34375 131.902344 C 557.34375 133.796875 554.5 133.796875 554.5 131.902344 C 554.5 130.007812 557.34375 130.007812 557.34375 131.902344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 572.574219 123.460938 C 572.574219 125.355469 569.734375 125.355469 569.734375 123.460938 C 569.734375 121.566406 572.574219 121.566406 572.574219 123.460938 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 554.488281 140.941406 C 554.488281 142.835938 551.644531 142.835938 551.644531 140.941406 C 551.644531 139.046875 554.488281 139.046875 554.488281 140.941406 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.980469 135.21875 C 548.980469 137.113281 546.136719 137.113281 546.136719 135.21875 C 546.136719 133.324219 548.980469 133.324219 548.980469 135.21875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.195312 137.707031 C 571.195312 139.601562 568.351562 139.601562 568.351562 137.707031 C 568.351562 135.8125 571.195312 135.8125 571.195312 137.707031 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 578.65625 118.300781 C 578.65625 120.195312 575.816406 120.195312 575.816406 118.300781 C 575.816406 116.40625 578.65625 116.40625 578.65625 118.300781 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 583.976562 125.921875 C 583.976562 127.816406 581.132812 127.816406 581.132812 125.921875 C 581.132812 124.027344 583.976562 124.027344 583.976562 125.921875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 571.945312 118.214844 C 571.945312 120.109375 569.101562 120.109375 569.101562 118.214844 C 569.101562 116.320312 571.945312 116.320312 571.945312 118.214844 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 567.863281 155.699219 C 567.863281 157.59375 565.019531 157.59375 565.019531 155.699219 C 565.019531 153.804688 567.863281 153.804688 567.863281 155.699219 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 574.945312 147.070312 C 574.945312 148.96875 572.105469 148.96875 572.105469 147.070312 C 572.105469 145.175781 574.945312 145.175781 574.945312 147.070312 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 558.058594 139.929688 C 558.058594 141.824219 555.214844 141.824219 555.214844 139.929688 C 555.214844 138.035156 558.058594 138.035156 558.058594 139.929688 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 574.914062 123.402344 C 574.914062 125.300781 572.070312 125.300781 572.070312 123.402344 C 572.070312 121.507812 574.914062 121.507812 574.914062 123.402344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 548.597656 132.132812 C 548.597656 134.03125 545.753906 134.03125 545.753906 132.132812 C 545.753906 130.238281 548.597656 130.238281 548.597656 132.132812 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 539.257812 149.527344 C 539.257812 151.421875 536.417969 151.421875 536.417969 149.527344 C 536.417969 147.632812 539.257812 147.632812 539.257812 149.527344 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:0.74902;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:0.74902;stroke-miterlimit:10;" d="M 561.046875 116.691406 C 561.046875 118.585938 558.203125 118.585938 558.203125 116.691406 C 558.203125 114.796875 561.046875 114.796875 561.046875 116.691406 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 560.519531 49.367188 L 560.300781 49.390625 L 559.386719 49.503906 L 558.472656 49.636719 L 557.558594 49.789062 L 556.644531 49.957031 L 555.730469 50.148438 L 555.175781 50.273438 L 554.816406 50.347656 L 553.902344 50.554688 L 552.988281 50.78125 L 552.074219 51.019531 L 551.492188 51.175781 L 551.160156 51.261719 L 550.246094 51.507812 L 549.332031 51.761719 L 548.417969 52.023438 L 548.21875 52.078125 L 547.503906 52.273438 L 546.589844 52.527344 L 545.675781 52.773438 L 544.902344 52.984375 L 544.761719 53.019531 L 543.847656 53.25 L 542.933594 53.472656 L 542.019531 53.691406 L 541.167969 53.886719 L 541.105469 53.902344 L 540.191406 54.097656 L 537.449219 54.671875 L 536.890625 54.792969 L 536.535156 54.863281 L 535.621094 55.058594 L 534.707031 55.261719 L 533.792969 55.480469 L 532.976562 55.695312 L 532.878906 55.71875 L 531.964844 55.96875 L 531.050781 56.25 L 530.136719 56.5625 L 530.042969 56.601562 L 529.222656 56.90625 L 528.308594 57.296875 L 527.878906 57.503906 L 527.394531 57.738281 L 526.480469 58.25 L 526.226562 58.40625 L 525.566406 58.839844 L 524.933594 59.3125 L 524.652344 59.539062 L 523.914062 60.214844 L 523.738281 60.394531 L 523.113281 61.121094 L 522.824219 61.507812 L 522.484375 62.023438 L 522.007812 62.929688 L 521.910156 63.164062 L 521.660156 63.832031 L 521.429688 64.738281 L 521.296875 65.640625 L 521.253906 66.542969 L 521.289062 67.449219 L 521.394531 68.351562 L 521.5625 69.257812 L 521.78125 70.160156 L 521.910156 70.570312 L 522.050781 71.066406 L 522.363281 71.96875 L 522.707031 72.871094 L 522.824219 73.140625 L 523.082031 73.777344 L 523.484375 74.679688 L 523.738281 75.210938 L 523.910156 75.585938 L 524.347656 76.488281 L 524.652344 77.082031 L 524.804688 77.394531 L 525.273438 78.296875 L 525.566406 78.847656 L 525.75 79.199219 L 526.230469 80.105469 L 526.480469 80.558594 L 526.722656 81.007812 L 527.210938 81.914062 L 527.394531 82.25 L 527.707031 82.816406 L 528.191406 83.722656 L 528.308594 83.9375 L 528.6875 84.625 L 529.164062 85.53125 L 529.222656 85.636719 L 529.65625 86.433594 L 530.121094 87.335938 L 530.136719 87.367188 L 530.601562 88.242188 L 531.046875 89.144531 L 531.050781 89.148438 L 531.511719 90.050781 L 531.9375 90.953125 L 531.964844 91.011719 L 532.378906 91.859375 L 532.78125 92.761719 L 532.878906 93.003906 L 533.1875 93.664062 L 533.5625 94.570312 L 533.792969 95.199219 L 533.914062 95.472656 L 534.261719 96.378906 L 534.558594 97.28125 L 534.707031 97.8125 L 534.839844 98.1875 L 535.097656 99.089844 L 535.308594 99.992188 L 535.472656 100.898438 L 535.585938 101.800781 L 535.621094 102.332031 L 535.65625 102.707031 L 535.667969 103.609375 L 535.621094 104.222656 L 535.601562 104.515625 L 535.46875 105.417969 L 535.234375 106.324219 L 534.84375 107.226562 L 534.707031 107.457031 L 534.347656 108.128906 L 533.792969 108.855469 L 533.667969 109.035156 L 532.878906 109.90625 L 532.851562 109.9375 L 531.964844 110.800781 L 531.925781 110.84375 L 531.050781 111.632812 L 530.933594 111.746094 L 530.136719 112.441406 L 529.914062 112.652344 L 529.222656 113.261719 L 528.910156 113.554688 L 528.308594 114.113281 L 527.964844 114.457031 L 527.394531 115.039062 L 527.101562 115.363281 L 526.480469 116.078125 L 526.328125 116.265625 L 525.660156 117.171875 L 525.566406 117.316406 L 525.109375 118.074219 L 524.652344 118.921875 L 524.625 118.980469 L 524.257812 119.882812 L 523.957031 120.789062 L 523.738281 121.589844 L 523.714844 121.691406 L 523.550781 122.59375 L 523.429688 123.5 L 523.335938 124.402344 L 523.242188 125.308594 L 523.089844 126.210938 L 522.824219 126.957031 L 522.765625 127.117188 L 522.070312 128.019531 L 521.910156 128.128906 L 520.996094 128.695312 L 520.5625 128.921875 L 520.082031 129.101562 L 519.167969 129.425781 L 518.253906 129.714844 L 517.902344 129.828125 L 517.339844 129.972656 L 516.425781 130.207031 L 515.511719 130.425781 L 514.597656 130.640625 L 514.207031 130.730469 L 513.683594 130.84375 L 511.855469 131.21875 L 510.941406 131.398438 L 510.027344 131.574219 L 509.726562 131.636719 L 509.113281 131.75 L 508.199219 131.921875 L 507.285156 132.085938 L 506.371094 132.246094 L 505.457031 132.410156 L 504.742188 132.539062 L 504.542969 132.574219 L 503.628906 132.738281 L 502.714844 132.898438 L 501.800781 133.054688 L 499.972656 133.382812 L 499.640625 133.445312 L 499.058594 133.554688 L 498.144531 133.722656 L 497.230469 133.894531 L 496.316406 134.070312 L 495.402344 134.25 L 494.933594 134.347656 L 494.488281 134.445312 L 493.574219 134.644531 L 492.660156 134.851562 L 491.746094 135.066406 L 491.007812 135.25 L 490.832031 135.300781 L 489.917969 135.550781 L 489.003906 135.816406 L 488.089844 136.101562 L 487.914062 136.15625 L 487.175781 136.417969 L 486.261719 136.761719 L 485.523438 137.058594 L 485.347656 137.140625 L 484.433594 137.570312 L 483.660156 137.964844 L 483.519531 138.046875 L 482.605469 138.597656 L 482.179688 138.867188 L 481.691406 139.234375 L 481.003906 139.773438 L 480.777344 139.984375 L 480.050781 140.675781 L 479.863281 140.894531 L 479.269531 141.582031 L 478.949219 142.039062 L 478.632812 142.484375 L 478.121094 143.386719 L 478.035156 143.574219 L 477.691406 144.292969 L 477.359375 145.195312 L 477.121094 146.035156 L 477.101562 146.101562 L 476.894531 147.003906 L 476.75 147.910156 L 476.65625 148.8125 L 476.609375 149.714844 L 476.605469 150.621094 L 476.636719 151.523438 L 476.703125 152.429688 L 476.796875 153.332031 L 476.921875 154.238281 L 477.066406 155.140625 L 477.121094 155.4375 L 477.226562 156.042969 L 477.398438 156.949219 L 477.582031 157.851562 L 477.777344 158.757812 L 477.976562 159.660156 L 478.035156 159.933594 L 478.167969 160.566406 L 478.347656 161.46875 L 478.523438 162.375 L 478.6875 163.277344 L 478.835938 164.179688 L 478.949219 164.96875 L 478.964844 165.085938 L 479.070312 165.988281 L 479.160156 166.894531 L 479.230469 167.796875 L 479.285156 168.703125 L 479.328125 169.605469 L 479.359375 170.507812 L 479.386719 171.414062 L 479.40625 172.316406 L 479.429688 173.222656 L 479.457031 174.125 L 479.488281 175.03125 L 479.53125 175.933594 L 479.585938 176.835938 L 479.652344 177.742188 L 479.738281 178.644531 L 479.839844 179.550781 L 479.863281 179.71875 L 479.957031 180.453125 L 480.089844 181.359375 L 480.25 182.261719 L 480.433594 183.167969 L 480.644531 184.070312 L 480.777344 184.574219 L 480.875 184.972656 L 481.128906 185.878906 L 481.414062 186.78125 L 481.691406 187.566406 L 481.734375 187.6875 L 482.066406 188.589844 L 482.441406 189.496094 L 482.605469 189.859375 L 482.84375 190.398438 L 483.277344 191.300781 L 483.519531 191.761719 L 483.75 192.207031 L 484.257812 193.109375 L 484.433594 193.398438 L 484.804688 194.015625 L 485.347656 194.839844 L 485.398438 194.917969 L 486.03125 195.824219 L 486.261719 196.128906 L 486.71875 196.726562 L 487.175781 197.289062 L 487.460938 197.628906 L 488.089844 198.339844 L 488.269531 198.535156 L 489.003906 199.296875 L 489.148438 199.4375 L 489.917969 200.167969 L 490.113281 200.34375 L 490.832031 200.960938 L 491.1875 201.246094 L 491.746094 201.683594 L 492.40625 202.152344 L 492.660156 202.332031 L 493.574219 202.914062 L 493.820312 203.054688 L 494.488281 203.4375 L 495.402344 203.890625 L 495.558594 203.960938 L 496.316406 204.292969 L 497.230469 204.625 L 498.054688 204.863281 L 498.144531 204.890625 L 499.058594 205.101562 L 499.972656 205.246094 L 500.886719 205.316406 L 501.800781 205.316406 L 502.714844 205.242188 L 503.628906 205.085938 L 504.457031 204.863281 L 504.542969 204.84375 L 505.457031 204.53125 L 506.371094 204.121094 L 506.652344 203.960938 L 507.285156 203.628906 L 508.164062 203.054688 L 508.199219 203.035156 L 509.113281 202.371094 L 509.363281 202.152344 L 510.027344 201.621094 L 510.417969 201.246094 L 510.941406 200.789062 L 511.378906 200.34375 L 511.855469 199.890625 L 512.269531 199.4375 L 512.769531 198.933594 L 513.117188 198.535156 L 513.683594 197.929688 L 513.929688 197.628906 L 514.597656 196.882812 L 514.722656 196.726562 L 515.496094 195.824219 L 515.511719 195.808594 L 516.25 194.917969 L 516.425781 194.71875 L 516.996094 194.015625 L 517.339844 193.617188 L 517.742188 193.109375 L 518.253906 192.503906 L 518.488281 192.207031 L 519.167969 191.382812 L 519.230469 191.300781 L 519.96875 190.398438 L 520.082031 190.265625 L 520.707031 189.496094 L 520.996094 189.15625 L 521.457031 188.589844 L 521.910156 188.050781 L 522.210938 187.6875 L 522.824219 186.957031 L 522.96875 186.78125 L 523.734375 185.878906 L 523.738281 185.871094 L 524.5 184.972656 L 524.652344 184.796875 L 525.28125 184.070312 L 525.566406 183.742188 L 526.078125 183.167969 L 526.480469 182.707031 L 526.882812 182.261719 L 527.394531 181.691406 L 527.707031 181.359375 L 528.308594 180.703125 L 528.550781 180.453125 L 529.222656 179.738281 L 529.410156 179.550781 L 530.136719 178.800781 L 530.296875 178.644531 L 531.050781 177.890625 L 531.214844 177.742188 L 531.964844 177.011719 L 532.160156 176.835938 L 532.878906 176.15625 L 533.140625 175.933594 L 533.792969 175.324219 L 534.144531 175.03125 L 534.707031 174.511719 L 535.171875 174.125 L 535.621094 173.703125 L 536.195312 173.222656 L 536.535156 172.890625 L 537.175781 172.316406 L 537.449219 172.03125 L 538.078125 171.414062 L 538.363281 171.070312 L 538.847656 170.507812 L 539.277344 169.871094 L 539.460938 169.605469 L 539.871094 168.703125 L 540.09375 167.796875 L 540.089844 166.894531 L 539.835938 165.988281 L 539.320312 165.085938 L 539.277344 165.035156 L 538.363281 164.214844 L 538.300781 164.179688 L 537.449219 163.757812 L 536.535156 163.507812 L 535.621094 163.410156 L 534.707031 163.414062 L 533.792969 163.492188 L 532.878906 163.613281 L 531.050781 163.902344 L 530.136719 164.03125 L 529.222656 164.136719 L 528.636719 164.179688 L 528.308594 164.203125 L 527.394531 164.214844 L 526.519531 164.179688 L 526.480469 164.179688 L 525.566406 164.066406 L 524.652344 163.871094 L 523.738281 163.578125 L 523.046875 163.277344 L 522.824219 163.136719 L 521.929688 162.375 L 521.910156 162.335938 L 521.535156 161.46875 L 521.5625 160.566406 L 521.910156 159.660156 L 522.546875 158.757812 L 522.824219 158.453125 L 523.386719 157.851562 L 523.738281 157.53125 L 524.386719 156.949219 L 524.652344 156.730469 L 525.492188 156.042969 L 525.566406 155.984375 L 526.480469 155.285156 L 526.667969 155.140625 L 527.394531 154.582031 L 527.839844 154.238281 L 528.308594 153.851562 L 528.941406 153.332031 L 529.222656 153.078125 L 529.941406 152.429688 L 530.136719 152.222656 L 530.8125 151.523438 L 531.050781 151.222656 L 531.539062 150.621094 L 531.964844 149.949219 L 532.117188 149.714844 L 532.570312 148.8125 L 532.871094 147.910156 L 532.878906 147.867188 L 533.066406 147.003906 L 533.128906 146.101562 L 533.0625 145.195312 L 532.878906 144.300781 L 532.878906 144.292969 L 532.617188 143.386719 L 532.257812 142.484375 L 531.964844 141.898438 L 531.824219 141.582031 L 531.363281 140.675781 L 531.050781 140.140625 L 530.859375 139.773438 L 530.347656 138.867188 L 530.136719 138.507812 L 529.839844 137.964844 L 529.332031 137.058594 L 529.222656 136.855469 L 528.859375 136.15625 L 528.398438 135.25 L 528.308594 135.046875 L 527.988281 134.347656 L 527.621094 133.445312 L 527.394531 132.738281 L 527.324219 132.539062 L 527.128906 131.636719 L 527.097656 130.730469 L 527.367188 129.828125 L 527.394531 129.792969 L 528.144531 128.921875 L 528.308594 128.8125 L 529.222656 128.222656 L 529.546875 128.019531 L 530.136719 127.71875 L 531.050781 127.246094 L 531.289062 127.117188 L 531.964844 126.769531 L 532.878906 126.269531 L 532.976562 126.210938 L 533.792969 125.726562 L 534.4375 125.308594 L 534.707031 125.121094 L 535.621094 124.421875 L 535.644531 124.402344 L 536.535156 123.585938 L 536.621094 123.5 L 537.410156 122.59375 L 537.449219 122.542969 L 538.054688 121.691406 L 538.363281 121.167969 L 538.585938 120.789062 L 539.03125 119.882812 L 539.277344 119.289062 L 539.410156 118.980469 L 539.75 118.074219 L 540.046875 117.171875 L 540.191406 116.691406 L 540.332031 116.265625 L 540.609375 115.363281 L 540.882812 114.457031 L 541.105469 113.753906 L 541.175781 113.554688 L 541.496094 112.652344 L 541.84375 111.746094 L 542.019531 111.3125 L 542.226562 110.84375 L 542.636719 109.9375 L 542.933594 109.292969 L 543.058594 109.035156 L 543.457031 108.128906 L 543.8125 107.226562 L 543.847656 107.121094 L 544.109375 106.324219 L 544.339844 105.417969 L 544.515625 104.515625 L 544.652344 103.609375 L 544.761719 102.707031 L 544.761719 102.703125 L 544.855469 101.800781 L 544.941406 100.898438 L 545.039062 99.992188 L 545.144531 99.089844 L 545.273438 98.1875 L 545.429688 97.28125 L 545.617188 96.378906 L 545.675781 96.148438 L 545.855469 95.472656 L 546.144531 94.570312 L 546.496094 93.664062 L 546.589844 93.46875 L 546.972656 92.761719 L 547.503906 91.957031 L 547.589844 91.859375 L 548.417969 91.085938 L 548.667969 90.953125 L 549.332031 90.667969 L 550.246094 90.601562 L 551.160156 90.839844 L 551.359375 90.953125 L 552.074219 91.382812 L 552.605469 91.859375 L 552.988281 92.214844 L 553.433594 92.761719 L 553.902344 93.371094 L 554.089844 93.664062 L 554.625 94.570312 L 554.816406 94.925781 L 555.074219 95.472656 L 555.457031 96.378906 L 555.730469 97.09375 L 555.796875 97.28125 L 556.058594 98.1875 L 556.28125 99.089844 L 556.457031 99.992188 L 556.585938 100.898438 L 556.644531 101.648438 L 556.65625 101.800781 L 556.667969 102.707031 L 556.644531 103.234375 L 556.625 103.609375 L 556.515625 104.515625 L 556.355469 105.417969 L 556.15625 106.324219 L 555.941406 107.226562 L 555.734375 108.128906 L 555.730469 108.164062 L 555.574219 109.035156 L 555.511719 109.9375 L 555.582031 110.84375 L 555.730469 111.433594 L 555.820312 111.746094 L 556.289062 112.652344 L 556.644531 113.105469 L 557.109375 113.554688 L 557.558594 113.878906 L 558.472656 114.308594 L 559.132812 114.457031 L 559.386719 114.507812 L 560.300781 114.527344 L 560.800781 114.457031 L 561.214844 114.398438 L 562.128906 114.132812 L 563.042969 113.75 L 563.394531 113.554688 L 563.957031 113.257812 L 564.871094 112.6875 L 564.921875 112.652344 L 565.785156 112.105469 L 566.320312 111.746094 L 566.699219 111.535156 L 567.613281 111.019531 L 567.9375 110.84375 L 568.527344 110.582031 L 569.441406 110.214844 L 570.242188 109.9375 L 570.355469 109.90625 L 571.269531 109.695312 L 572.183594 109.542969 L 573.097656 109.449219 L 574.011719 109.425781 L 574.925781 109.472656 L 575.839844 109.589844 L 576.753906 109.773438 L 577.339844 109.9375 L 577.667969 110.046875 L 578.582031 110.417969 L 579.492188 110.84375 L 579.496094 110.84375 L 580.410156 111.398438 L 580.957031 111.746094 L 581.324219 112.007812 L 582.222656 112.652344 L 582.238281 112.660156 L 583.152344 113.367188 L 583.417969 113.554688 L 584.066406 114.035156 L 584.730469 114.457031 L 584.980469 114.621094 L 585.894531 115.113281 L 586.480469 115.363281 L 586.808594 115.496094 L 587.722656 115.789062 L 588.636719 115.992188 L 589.550781 116.128906 L 590.464844 116.210938 L 591.378906 116.25 L 592.292969 116.253906 L 593.207031 116.226562 L 594.121094 116.167969 L 595.035156 116.085938 L 595.949219 115.984375 L 596.863281 115.859375 L 597.777344 115.714844 L 598.691406 115.546875 L 599.566406 115.363281 L 599.605469 115.355469 L 600.519531 115.144531 L 601.433594 114.917969 L 602.347656 114.667969 L 603.03125 114.457031 L 603.261719 114.390625 L 604.175781 114.09375 L 605.089844 113.773438 L 605.660156 113.554688 L 606.003906 113.421875 L 606.917969 113.050781 L 607.820312 112.652344 L 607.832031 112.644531 L 608.746094 112.210938 L 609.660156 111.75 L 609.664062 111.746094 L 610.574219 111.25 L 611.285156 110.84375 L 611.488281 110.71875 L 612.402344 110.152344 L 612.734375 109.9375 L 613.316406 109.542969 L 614.042969 109.035156 L 614.230469 108.890625 L 615.144531 108.199219 L 615.234375 108.128906 L 616.058594 107.457031 L 616.339844 107.226562 L 616.972656 106.660156 L 617.355469 106.324219 L 617.886719 105.808594 L 618.300781 105.417969 L 618.800781 104.898438 L 619.183594 104.515625 L 619.714844 103.921875 L 620.007812 103.609375 L 620.628906 102.875 L 620.777344 102.707031 L 621.5 101.800781 L 621.542969 101.742188 L 622.191406 100.898438 L 622.457031 100.503906 L 622.832031 99.992188 L 623.371094 99.167969 L 623.429688 99.089844 L 624.003906 98.1875 L 624.285156 97.683594 L 624.535156 97.28125 L 625.03125 96.378906 L 625.199219 96.03125 L 625.5 95.472656 L 625.933594 94.570312 L 626.113281 94.136719 L 626.335938 93.664062 L 626.707031 92.761719 L 627.027344 91.878906 L 627.035156 91.859375 L 627.351562 90.953125 L 627.625 90.050781 L 627.855469 89.144531 L 627.941406 88.734375 L 628.058594 88.242188 L 628.230469 87.335938 L 628.359375 86.433594 L 628.441406 85.53125 L 628.480469 84.625 L 628.476562 83.722656 L 628.421875 82.816406 L 628.316406 81.914062 L 628.148438 81.007812 L 627.941406 80.191406 L 627.921875 80.105469 L 627.640625 79.199219 L 627.285156 78.296875 L 627.027344 77.753906 L 626.855469 77.394531 L 626.347656 76.488281 L 626.113281 76.128906 L 625.753906 75.585938 L 625.199219 74.855469 L 625.0625 74.679688 L 624.285156 73.789062 L 624.273438 73.777344 L 623.378906 72.871094 L 623.371094 72.867188 L 622.457031 72.042969 L 622.371094 71.96875 L 621.542969 71.296875 L 621.242188 71.066406 L 620.628906 70.613281 L 619.976562 70.160156 L 619.714844 69.984375 L 618.800781 69.394531 L 618.582031 69.257812 L 617.886719 68.832031 L 617.050781 68.351562 L 616.972656 68.308594 L 616.058594 67.796875 L 615.402344 67.449219 L 615.144531 67.3125 L 614.230469 66.839844 L 613.632812 66.542969 L 613.316406 66.386719 L 612.402344 65.9375 L 611.769531 65.640625 L 611.488281 65.503906 L 610.574219 65.070312 L 609.839844 64.738281 L 609.660156 64.652344 L 608.746094 64.226562 L 607.871094 63.832031 L 607.832031 63.816406 L 606.917969 63.386719 L 606.003906 62.976562 L 605.898438 62.929688 L 605.089844 62.546875 L 604.175781 62.128906 L 603.945312 62.023438 L 603.261719 61.699219 L 602.347656 61.273438 L 602.019531 61.121094 L 601.433594 60.835938 L 600.519531 60.402344 L 600.125 60.214844 L 599.605469 59.960938 L 598.691406 59.519531 L 598.261719 59.3125 L 597.777344 59.070312 L 596.863281 58.621094 L 596.421875 58.40625 L 595.949219 58.171875 L 595.035156 57.722656 L 594.585938 57.503906 L 594.121094 57.269531 L 593.207031 56.824219 L 592.738281 56.601562 L 592.292969 56.378906 L 591.378906 55.941406 L 590.851562 55.695312 L 590.464844 55.507812 L 589.550781 55.078125 L 588.90625 54.792969 L 588.636719 54.664062 L 587.722656 54.253906 L 586.859375 53.886719 L 586.808594 53.863281 L 585.894531 53.46875 L 584.980469 53.101562 L 584.671875 52.984375 L 584.066406 52.738281 L 583.152344 52.390625 L 582.261719 52.078125 L 582.238281 52.070312 L 581.324219 51.746094 L 580.410156 51.449219 L 579.496094 51.175781 L 578.582031 50.898438 L 577.667969 50.648438 L 576.753906 50.421875 L 576.085938 50.273438 L 575.839844 50.210938 L 574.925781 50.007812 L 574.011719 49.828125 L 573.097656 49.667969 L 572.183594 49.53125 L 571.269531 49.414062 L 570.859375 49.367188 "/> +<g clip-path="url(#clip51)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 238.265625 L 642.519531 238.265625 L 642.519531 40.371094 L 442.433594 40.371094 Z M 442.433594 238.265625 "/> +</g> +<g clip-path="url(#clip52)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(85.098039%,85.098039%,85.098039%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 31.296875 40.371094 L 231.382812 40.371094 L 231.382812 23.34375 L 31.296875 23.34375 Z M 31.296875 40.371094 "/> +</g> +<g style="fill:rgb(10.196078%,10.196078%,10.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="116.667969" y="35.015625"/> + <use xlink:href="#glyph0-2" x="121.562109" y="35.015625"/> + <use xlink:href="#glyph0-3" x="126.45625" y="35.015625"/> + <use xlink:href="#glyph0-4" x="131.350391" y="35.015625"/> + <use xlink:href="#glyph0-5" x="136.244531" y="35.015625"/> + <use xlink:href="#glyph0-6" x="139.175" y="35.015625"/> + <use xlink:href="#glyph0-7" x="141.619922" y="35.015625"/> + <use xlink:href="#glyph0-8" x="143.575" y="35.015625"/> +</g> +<g clip-path="url(#clip53)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(85.098039%,85.098039%,85.098039%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.867188 40.371094 L 436.953125 40.371094 L 436.953125 23.34375 L 236.867188 23.34375 Z M 236.867188 40.371094 "/> +</g> +<g style="fill:rgb(10.196078%,10.196078%,10.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="316.117188" y="35.015625"/> + <use xlink:href="#glyph0-10" x="321.011328" y="35.015625"/> + <use xlink:href="#glyph0-11" x="325.905469" y="35.015625"/> + <use xlink:href="#glyph0-1" x="330.799609" y="35.015625"/> + <use xlink:href="#glyph0-8" x="335.69375" y="35.015625"/> + <use xlink:href="#glyph0-12" x="338.138672" y="35.015625"/> + <use xlink:href="#glyph0-5" x="340.583594" y="35.015625"/> + <use xlink:href="#glyph0-7" x="343.514062" y="35.015625"/> + <use xlink:href="#glyph0-13" x="345.469141" y="35.015625"/> + <use xlink:href="#glyph0-14" x="350.363281" y="35.015625"/> + <use xlink:href="#glyph0-8" x="355.257422" y="35.015625"/> +</g> +<g clip-path="url(#clip54)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(85.098039%,85.098039%,85.098039%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 442.433594 40.371094 L 642.519531 40.371094 L 642.519531 23.34375 L 442.433594 23.34375 Z M 442.433594 40.371094 "/> +</g> +<g style="fill:rgb(10.196078%,10.196078%,10.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-11" x="530.496094" y="35.015625"/> + <use xlink:href="#glyph0-15" x="535.390234" y="35.015625"/> + <use xlink:href="#glyph0-4" x="539.790234" y="35.015625"/> + <use xlink:href="#glyph0-5" x="544.684375" y="35.015625"/> + <use xlink:href="#glyph0-6" x="547.614844" y="35.015625"/> + <use xlink:href="#glyph0-7" x="550.059766" y="35.015625"/> + <use xlink:href="#glyph0-8" x="552.014844" y="35.015625"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 40.394531 241.007812 L 40.394531 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.003906 241.007812 L 90.003906 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.609375 241.007812 L 139.609375 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.21875 241.007812 L 189.21875 238.265625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="36.480469" y="249.511719"/> + <use xlink:href="#glyph0-17" x="39.410938" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="86.089844" y="249.511719"/> + <use xlink:href="#glyph0-18" x="89.020313" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="137.164062" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="186.773438" y="249.511719"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.960938 241.007812 L 245.960938 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.570312 241.007812 L 295.570312 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.175781 241.007812 L 345.175781 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 394.785156 241.007812 L 394.785156 238.265625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="242.046875" y="249.511719"/> + <use xlink:href="#glyph0-17" x="244.977344" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="291.65625" y="249.511719"/> + <use xlink:href="#glyph0-18" x="294.586719" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="342.730469" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="392.339844" y="249.511719"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 451.527344 241.007812 L 451.527344 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 501.136719 241.007812 L 501.136719 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 550.746094 241.007812 L 550.746094 238.265625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 600.351562 241.007812 L 600.351562 238.265625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="447.613281" y="249.511719"/> + <use xlink:href="#glyph0-17" x="450.54375" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="497.222656" y="249.511719"/> + <use xlink:href="#glyph0-18" x="500.153125" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="548.300781" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="597.90625" y="249.511719"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="18.542969" y="232.429688"/> + <use xlink:href="#glyph0-17" x="21.473437" y="232.429688"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-16" x="18.542969" y="183.363281"/> + <use xlink:href="#glyph0-18" x="21.473437" y="183.363281"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-19" x="21.472656" y="134.296875"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-18" x="21.472656" y="85.234375"/> +</g> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 229.273438 L 31.296875 229.273438 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 180.207031 L 31.296875 180.207031 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 131.140625 L 31.296875 131.140625 "/> +<path style="fill:none;stroke-width:1.066978;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(20%,20%,20%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.558594 82.078125 L 31.296875 82.078125 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-1" x="309.707031" y="262.085938"/> + <use xlink:href="#glyph1-2" x="317.043945" y="262.085938"/> + <use xlink:href="#glyph1-3" x="320.707031" y="262.085938"/> + <use xlink:href="#glyph1-4" x="326.824707" y="262.085938"/> + <use xlink:href="#glyph1-5" x="332.942383" y="262.085938"/> + <use xlink:href="#glyph1-6" x="335.38623" y="262.085938"/> + <use xlink:href="#glyph1-7" x="340.88623" y="262.085938"/> + <use xlink:href="#glyph1-8" x="343.942383" y="262.085938"/> + <use xlink:href="#glyph1-2" x="350.060059" y="262.085938"/> + <use xlink:href="#glyph1-9" x="353.723145" y="262.085938"/> + <use xlink:href="#glyph1-10" x="356.779297" y="262.085938"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph2-1" x="13.371094" y="166.523438"/> + <use xlink:href="#glyph2-2" x="13.371094" y="159.186523"/> + <use xlink:href="#glyph2-3" x="13.371094" y="155.523438"/> + <use xlink:href="#glyph2-4" x="13.371094" y="149.405762"/> + <use xlink:href="#glyph2-5" x="13.371094" y="143.288086"/> + <use xlink:href="#glyph2-6" x="13.371094" y="140.844238"/> + <use xlink:href="#glyph2-7" x="13.371094" y="135.344238"/> + <use xlink:href="#glyph2-8" x="13.371094" y="132.288086"/> + <use xlink:href="#glyph2-2" x="13.371094" y="126.17041"/> + <use xlink:href="#glyph2-9" x="13.371094" y="122.507324"/> + <use xlink:href="#glyph2-10" x="13.371094" y="119.451172"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph3-1" x="31.296875" y="14.949219"/> + <use xlink:href="#glyph3-2" x="39.359961" y="14.949219"/> + <use xlink:href="#glyph3-3" x="43.755664" y="14.949219"/> + <use xlink:href="#glyph3-4" x="51.096875" y="14.949219"/> + <use xlink:href="#glyph3-5" x="54.029492" y="14.949219"/> + <use xlink:href="#glyph3-4" x="61.370703" y="14.949219"/> + <use xlink:href="#glyph3-5" x="64.30332" y="14.949219"/> + <use xlink:href="#glyph3-6" x="71.644531" y="14.949219"/> + <use xlink:href="#glyph3-7" x="78.985742" y="14.949219"/> + <use xlink:href="#glyph3-8" x="82.653125" y="14.949219"/> + <use xlink:href="#glyph3-9" x="91.457422" y="14.949219"/> + <use xlink:href="#glyph3-10" x="98.798633" y="14.949219"/> + <use xlink:href="#glyph3-7" x="102.466016" y="14.949219"/> + <use xlink:href="#glyph3-11" x="106.133398" y="14.949219"/> + <use xlink:href="#glyph3-8" x="110.529102" y="14.949219"/> + <use xlink:href="#glyph3-4" x="119.333398" y="14.949219"/> + <use xlink:href="#glyph3-12" x="122.266016" y="14.949219"/> + <use xlink:href="#glyph3-13" x="133.261719" y="14.949219"/> + <use xlink:href="#glyph3-14" x="140.60293" y="14.949219"/> + <use xlink:href="#glyph3-3" x="143.535547" y="14.949219"/> + <use xlink:href="#glyph3-10" x="150.876758" y="14.949219"/> + <use xlink:href="#glyph3-9" x="154.544141" y="14.949219"/> + <use xlink:href="#glyph3-15" x="161.885352" y="14.949219"/> + <use xlink:href="#glyph3-7" x="169.226562" y="14.949219"/> + <use xlink:href="#glyph3-16" x="172.893945" y="14.949219"/> + <use xlink:href="#glyph3-3" x="182.426562" y="14.949219"/> + <use xlink:href="#glyph3-10" x="189.767773" y="14.949219"/> + <use xlink:href="#glyph3-3" x="193.435156" y="14.949219"/> + <use xlink:href="#glyph3-17" x="200.776367" y="14.949219"/> +</g> +</g> +</svg> diff --git a/SD/5.1_model/images/what_is_ml.jpg b/SD/5.1_model/images/what_is_ml.jpg new file mode 100644 index 0000000..9eb554a Binary files /dev/null and b/SD/5.1_model/images/what_is_ml.jpg differ diff --git a/SD/5.1_model/images/whole-game-boost.svg b/SD/5.1_model/images/whole-game-boost.svg new file mode 100644 index 0000000..20bf116 --- /dev/null +++ b/SD/5.1_model/images/whole-game-boost.svg @@ -0,0 +1,96 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="3507.5 2514 744.5 847.1253" width="744.5" height="847.1253"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="3433.05" y="2429.2875"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_743"> + <g id="Graphic_742"/> + <g id="Graphic_740"> + <path d="M 3894 2728.2444 L 3894 2680.2444 C 3894 2676.9324 3926.816 2674.2444 3967.25 2674.2444 C 4007.684 2674.2444 4040.5 2676.9324 4040.5 2680.2444 L 4040.5 2728.2444 C 4040.5 2731.5564 4007.684 2734.2444 3967.25 2734.2444 C 3926.816 2734.2444 3894 2731.5564 3894 2728.2444" fill="#ffeabb"/> + <path d="M 3894 2728.2444 L 3894 2680.2444 C 3894 2676.9324 3926.816 2674.2444 3967.25 2674.2444 C 4007.684 2674.2444 4040.5 2676.9324 4040.5 2680.2444 L 4040.5 2728.2444 C 4040.5 2731.5564 4007.684 2734.2444 3967.25 2734.2444 C 3926.816 2734.2444 3894 2731.5564 3894 2728.2444 M 3894 2680.2444 C 3894 2683.5564 3926.816 2686.2444 3967.25 2686.2444 C 4007.684 2686.2444 4040.5 2683.5564 4040.5 2680.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(3899 2698.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan> + </text> + </g> + <g id="Graphic_739"> + <path d="M 3598 2728.2444 L 3598 2680.2444 C 3598 2676.9324 3630.816 2674.2444 3671.25 2674.2444 C 3711.684 2674.2444 3744.5 2676.9324 3744.5 2680.2444 L 3744.5 2728.2444 C 3744.5 2731.5564 3711.684 2734.2444 3671.25 2734.2444 C 3630.816 2734.2444 3598 2731.5564 3598 2728.2444" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 3598 2728.2444 L 3598 2680.2444 C 3598 2676.9324 3630.816 2674.2444 3671.25 2674.2444 C 3711.684 2674.2444 3744.5 2676.9324 3744.5 2680.2444 L 3744.5 2728.2444 C 3744.5 2731.5564 3711.684 2734.2444 3671.25 2734.2444 C 3630.816 2734.2444 3598 2731.5564 3598 2728.2444 M 3598 2680.2444 C 3598 2683.5564 3630.816 2686.2444 3671.25 2686.2444 C 3711.684 2686.2444 3744.5 2683.5564 3744.5 2680.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(3603 2698.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Graphic_738"> + <path d="M 3755 2608.1253 L 3755 2560.1253 C 3755 2556.8133 3787.816 2554.1253 3828.25 2554.1253 C 3868.684 2554.1253 3901.5 2556.8133 3901.5 2560.1253 L 3901.5 2608.1253 C 3901.5 2611.4373 3868.684 2614.1253 3828.25 2614.1253 C 3787.816 2614.1253 3755 2611.4373 3755 2608.1253 M 3755 2560.1253 C 3755 2563.4373 3787.816 2566.1253 3828.25 2566.1253 C 3868.684 2566.1253 3901.5 2563.4373 3901.5 2560.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(3760 2577.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_737"> + <line x1="3790.181" y1="2613.2515" x2="3717.1817" y2="2669.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_736"> + <line x1="3862.1767" y1="2613.4436" x2="3925.8327" y2="2668.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_735" filter="url(#Shadow)"> + <path d="M 3790.5 2877.1253 L 3790.5 2829.1253 C 3790.5 2825.8133 3823.316 2823.1253 3863.75 2823.1253 C 3904.184 2823.1253 3937 2825.8133 3937 2829.1253 L 3937 2877.1253 C 3937 2880.4373 3904.184 2883.1253 3863.75 2883.1253 C 3823.316 2883.1253 3790.5 2880.4373 3790.5 2877.1253" fill="#fffbf1"/> + <path d="M 3790.5 2877.1253 L 3790.5 2829.1253 C 3790.5 2825.8133 3823.316 2823.1253 3863.75 2823.1253 C 3904.184 2823.1253 3937 2825.8133 3937 2829.1253 L 3937 2877.1253 C 3937 2880.4373 3904.184 2883.1253 3863.75 2883.1253 C 3823.316 2883.1253 3790.5 2880.4373 3790.5 2877.1253 M 3790.5 2829.1253 C 3790.5 2832.4373 3823.316 2835.1253 3863.75 2835.1253 C 3904.184 2835.1253 3937 2832.4373 3937 2829.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(3795.5 2846.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_734"> + <line x1="3946.5633" y1="2734.0015" x2="3890.0877" y2="2815.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_733"> + <path d="M 4003 2871.5253 L 4003 2834.7253 C 4003 2832.186 4024.84 2830.1253 4051.75 2830.1253 C 4078.66 2830.1253 4100.5 2832.186 4100.5 2834.7253 L 4100.5 2871.5253 C 4100.5 2874.0645 4078.66 2876.1253 4051.75 2876.1253 C 4024.84 2876.1253 4003 2874.0645 4003 2871.5253" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 4003 2871.5253 L 4003 2834.7253 C 4003 2832.186 4024.84 2830.1253 4051.75 2830.1253 C 4078.66 2830.1253 4100.5 2832.186 4100.5 2834.7253 L 4100.5 2871.5253 C 4100.5 2874.0645 4078.66 2876.1253 4051.75 2876.1253 C 4024.84 2876.1253 4003 2874.0645 4003 2871.5253 M 4003 2834.7253 C 4003 2837.2645 4024.84 2839.3253 4051.75 2839.3253 C 4078.66 2839.3253 4100.5 2837.2645 4100.5 2834.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4008 2848.0773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan> + </text> + </g> + <g id="Line_732"> + <line x1="3984.1854" y1="2734.083" x2="4033.9026" y2="2821.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_729"> + <ellipse cx="3800.25" cy="2946.5978" rx="42.2500675113548" ry="19.2857451023941" fill="#fffbf1"/> + <ellipse cx="3800.25" cy="2946.5978" rx="42.2500675113548" ry="19.2857451023941" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(3771.45 2938.0978)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan> + </text> + </g> + <g id="Line_728"> + <line x1="3843.527" y1="2882.8934" x2="3818.3295" y2="2919.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_727"> + <ellipse cx="3931.25" cy="2946.1635" rx="42.2500675113553" ry="18.8514574734569" fill="#fffbf1"/> + <ellipse cx="3931.25" cy="2946.1635" rx="42.2500675113553" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(3902.45 2937.9675)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan> + </text> + </g> + <g id="Line_726"> + <line x1="3879.1667" y1="2886.5" x2="3909.4014" y2="2921.135" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-final-fit.jpg b/SD/5.1_model/images/whole-game-final-fit.jpg new file mode 100644 index 0000000..14b42ae Binary files /dev/null and b/SD/5.1_model/images/whole-game-final-fit.jpg differ diff --git a/SD/5.1_model/images/whole-game-final-performance.jpg b/SD/5.1_model/images/whole-game-final-performance.jpg new file mode 100644 index 0000000..6b4305e Binary files /dev/null and b/SD/5.1_model/images/whole-game-final-performance.jpg differ diff --git a/SD/5.1_model/images/whole-game-final-resamples.svg b/SD/5.1_model/images/whole-game-final-resamples.svg new file mode 100644 index 0000000..36e4777 --- /dev/null +++ b/SD/5.1_model/images/whole-game-final-resamples.svg @@ -0,0 +1,143 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="6505 2491 744.5 847.1253" width="744.5" height="847.1253"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="6430.55" y="2406.2875"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_695"> + <g id="Graphic_585"/> + <g id="Graphic_584"> + <path d="M 6917 3075.2505 L 7059.5 3075.2505 C 7060.6046 3075.2505 7061.5 3076.146 7061.5 3077.2505 L 7061.5 3133.2505 C 7061.5 3134.355 7060.6046 3135.2505 7059.5 3135.2505 L 6917 3135.2505 C 6915.8954 3135.2505 6915 3134.355 6915 3133.2505 L 6915 3077.2505 C 6915 3076.146 6915.8954 3075.2505 6917 3075.2505 Z" fill="#ffeabb"/> + <path d="M 6917 3075.2505 L 7059.5 3075.2505 C 7060.6046 3075.2505 7061.5 3076.146 7061.5 3077.2505 L 7061.5 3133.2505 C 7061.5 3134.355 7060.6046 3135.2505 7059.5 3135.2505 L 6917 3135.2505 C 6915.8954 3135.2505 6915 3134.355 6915 3133.2505 L 6915 3077.2505 C 6915 3076.146 6915.8954 3075.2505 6917 3075.2505 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6920 3096.0265)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.018" y="15">Final model fit</tspan> + </text> + </g> + <g id="Graphic_583"> + <path d="M 6917 2957.3758 L 7059.5 2957.3758 C 7060.6046 2957.3758 7061.5 2958.2712 7061.5 2959.3758 L 7061.5 3015.3758 C 7061.5 3016.4804 7060.6046 3017.3758 7059.5 3017.3758 L 6917 3017.3758 C 6915.8954 3017.3758 6915 3016.4804 6915 3015.3758 L 6915 2959.3758 C 6915 2958.2712 6915.8954 2957.3758 6917 2957.3758 Z" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 6917 2957.3758 L 7059.5 2957.3758 C 7060.6046 2957.3758 7061.5 2958.2712 7061.5 2959.3758 L 7061.5 3015.3758 C 7061.5 3016.4804 7060.6046 3017.3758 7059.5 3017.3758 L 6917 3017.3758 C 6915.8954 3017.3758 6915 3016.4804 6915 3015.3758 L 6915 2959.3758 C 6915 2958.2712 6915.8954 2957.3758 6917 2957.3758 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6920 2978.1518)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.762" y="15">Select a Model</tspan> + </text> + </g> + <g id="Graphic_582"> + <path d="M 6917 3193.1253 L 7059.5 3193.1253 C 7060.6046 3193.1253 7061.5 3194.0207 7061.5 3195.1253 L 7061.5 3251.1253 C 7061.5 3252.23 7060.6046 3253.1253 7059.5 3253.1253 L 6917 3253.1253 C 6915.8954 3253.1253 6915 3252.23 6915 3251.1253 L 6915 3195.1253 C 6915 3194.0207 6915.8954 3193.1253 6917 3193.1253 Z" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 6917 3193.1253 L 7059.5 3193.1253 C 7060.6046 3193.1253 7061.5 3194.0207 7061.5 3195.1253 L 7061.5 3251.1253 C 7061.5 3252.23 7060.6046 3253.1253 7059.5 3253.1253 L 6917 3253.1253 C 6915.8954 3253.1253 6915 3252.23 6915 3251.1253 L 6915 3195.1253 C 6915 3194.0207 6915.8954 3193.1253 6917 3193.1253 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6920 3204.6773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="24.242" y="15">Verify model </tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="22.762" y="33.448">performance</tspan> + </text> + </g> + <g id="Line_581"> + <line x1="6988.25" y1="3017.3758" x2="6988.25" y2="3065.3505" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_580"> + <line x1="6988.25" y1="3135.2505" x2="6988.25" y2="3183.2253" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_578"> + <path d="M 6618.5 2703.2444 L 6618.5 2655.2444 C 6618.5 2651.9324 6651.316 2649.2444 6691.75 2649.2444 C 6732.184 2649.2444 6765 2651.9324 6765 2655.2444 L 6765 2703.2444 C 6765 2706.5564 6732.184 2709.2444 6691.75 2709.2444 C 6651.316 2709.2444 6618.5 2706.5564 6618.5 2703.2444" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 6618.5 2703.2444 L 6618.5 2655.2444 C 6618.5 2651.9324 6651.316 2649.2444 6691.75 2649.2444 C 6732.184 2649.2444 6765 2651.9324 6765 2655.2444 L 6765 2703.2444 C 6765 2706.5564 6732.184 2709.2444 6691.75 2709.2444 C 6651.316 2709.2444 6618.5 2706.5564 6618.5 2703.2444 M 6618.5 2655.2444 C 6618.5 2658.5564 6651.316 2661.2444 6691.75 2661.2444 C 6732.184 2661.2444 6765 2658.5564 6765 2655.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6623.5 2673.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Line_577"> + <path d="M 6679.368 2709.159 C 6654.031 2775.6832 6603.932 2939.469 6669.3696 3059.504 C 6720.916 3154.0578 6829.279 3194.18 6905.317 3211.0687" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_576"> + <path d="M 6775.5 2583.1253 L 6775.5 2535.1253 C 6775.5 2531.8133 6808.316 2529.1253 6848.75 2529.1253 C 6889.184 2529.1253 6922 2531.8133 6922 2535.1253 L 6922 2583.1253 C 6922 2586.4373 6889.184 2589.1253 6848.75 2589.1253 C 6808.316 2589.1253 6775.5 2586.4373 6775.5 2583.1253 M 6775.5 2535.1253 C 6775.5 2538.4373 6808.316 2541.1253 6848.75 2541.1253 C 6889.184 2541.1253 6922 2538.4373 6922 2535.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6780.5 2552.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_575"> + <line x1="6810.681" y1="2588.2515" x2="6737.682" y2="2644.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_573"> + <ellipse cx="6922.75" cy="2889.999" rx="42.2500675113548" ry="19.285745102394" fill="#f6f5ff"/> + <ellipse cx="6922.75" cy="2889.999" rx="42.2500675113548" ry="19.285745102394" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6893.95 2881.499)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan> + </text> + </g> + <g id="Line_571"> + <line x1="6972.787" y1="2808.041" x2="6939.253" y2="2862.9682" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_569"> + <line x1="6935.1535" y1="2908.439" x2="6962.545" y2="2949.1612" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_567" filter="url(#Shadow)"> + <path d="M 6908.9505 2703.2444 L 6908.9505 2655.2444 C 6908.9505 2651.9324 6941.7665 2649.2444 6982.2005 2649.2444 C 7022.6345 2649.2444 7055.4505 2651.9324 7055.4505 2655.2444 L 7055.4505 2703.2444 C 7055.4505 2706.5564 7022.6345 2709.2444 6982.2005 2709.2444 C 6941.7665 2709.2444 6908.9505 2706.5564 6908.9505 2703.2444" fill="#ffeabb"/> + <path d="M 6908.9505 2703.2444 L 6908.9505 2655.2444 C 6908.9505 2651.9324 6941.7665 2649.2444 6982.2005 2649.2444 C 7022.6345 2649.2444 7055.4505 2651.9324 7055.4505 2655.2444 L 7055.4505 2703.2444 C 7055.4505 2706.5564 7022.6345 2709.2444 6982.2005 2709.2444 C 6941.7665 2709.2444 6908.9505 2706.5564 6908.9505 2703.2444 M 6908.9505 2655.2444 C 6908.9505 2658.5564 6941.7665 2661.2444 6982.2005 2661.2444 C 7022.6345 2661.2444 7055.4505 2658.5564 7055.4505 2655.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(6913.9505 2673.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_586"> + <line x1="6881.382" y1="2588.4978" x2="6942.21" y2="2643.2487" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_588"> + <line x1="6982.0905" y1="2709.2444" x2="6981.931" y2="2752.7223" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_589"> + <path d="M 7017.447 2708.5046 C 7073.38 2757.5555 7176.332 2859.6427 7177.579 2947.4933 C 7178.5146 3013.3506 7122.054 3054.3085 7070.558 3077.9313" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Group_606"> + <g id="Graphic_603"> + <path d="M 6914.118 2816.6222 L 6914.118 2768.6222 C 6914.118 2765.3102 6944.433 2762.6222 6981.785 2762.6222 C 7019.137 2762.6222 7049.4515 2765.3102 7049.4515 2768.6222 L 7049.4515 2816.6222 C 7049.4515 2819.9342 7019.137 2822.6222 6981.785 2822.6222 C 6944.433 2822.6222 6914.118 2819.9342 6914.118 2816.6222" fill="#f6f5ff"/> + <path d="M 6914.118 2816.6222 L 6914.118 2768.6222 C 6914.118 2765.3102 6944.433 2762.6222 6981.785 2762.6222 C 7019.137 2762.6222 7049.4515 2765.3102 7049.4515 2768.6222 L 7049.4515 2816.6222 C 7049.4515 2819.9342 7019.137 2822.6222 6981.785 2822.6222 C 6944.433 2822.6222 6914.118 2819.9342 6914.118 2816.6222 M 6914.118 2768.6222 C 6914.118 2771.9342 6944.433 2774.6222 6981.785 2774.6222 C 7019.137 2774.6222 7049.4515 2771.9342 7049.4515 2768.6222" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_602"> + <path d="M 6914.026 2778.9803 C 6914.026 2778.9803 6940.3496 2783.4773 6978.69 2783.4305 C 7017.031 2783.3838 7049.359 2778.815 7049.359 2778.815" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_601"> + <path d="M 6915.042 2788.2893 C 6915.042 2788.2893 6941.366 2792.7863 6979.706 2792.7395 C 7018.047 2792.6928 7050.375 2788.124 7050.375 2788.124" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_600"> + <path d="M 6914.026 2797.5983 C 6914.026 2797.5983 6940.3496 2802.0953 6978.69 2802.0485 C 7017.031 2802.0017 7049.359 2797.433 7049.359 2797.433" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_599"> + <path d="M 6915.042 2806.9073 C 6915.042 2806.9073 6941.366 2811.4043 6979.706 2811.3575 C 7018.047 2811.3107 7050.375 2806.742 7050.375 2806.742" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_594"> + <rect x="6935.289" y="2777.2034" width="93.82355" height="30.83759" fill="#f6f5ff"/> + <text transform="translate(6952.4165 2785.4542)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="12" fill="black" x="0" y="11">Resamples</tspan> + </text> + </g> + </g> + <g id="Graphic_685"> + <ellipse cx="7053.75" cy="2889.5647" rx="42.2500675113548" ry="18.8514574734569" fill="#f6f5ff"/> + <ellipse cx="7053.75" cy="2889.5647" rx="42.2500675113548" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(7024.95 2881.3687)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan> + </text> + </g> + <g id="Line_686"> + <line x1="7001.667" y1="2822.6222" x2="7033.812" y2="2863.938" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_687"> + <line x1="7041.652" y1="2907.6306" x2="7013.848" y2="2949.15" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-final.svg b/SD/5.1_model/images/whole-game-final.svg new file mode 100644 index 0000000..5613cb8 --- /dev/null +++ b/SD/5.1_model/images/whole-game-final.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="5396 2538 744.5 847.1253" width="744.5" height="847.1253"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="5321.55" y="2453.2875"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_694"> + <g id="Group_591"> + <g id="Graphic_554"/> + <g id="Graphic_553"> + <path d="M 5784.5 3163.1253 L 5927 3163.1253 C 5928.1046 3163.1253 5929 3164.0207 5929 3165.1253 L 5929 3221.1253 C 5929 3222.23 5928.1046 3223.1253 5927 3223.1253 L 5784.5 3223.1253 C 5783.3954 3223.1253 5782.5 3222.23 5782.5 3221.1253 L 5782.5 3165.1253 C 5782.5 3164.0207 5783.3954 3163.1253 5784.5 3163.1253 Z" fill="#ffeabb"/> + <path d="M 5784.5 3163.1253 L 5927 3163.1253 C 5928.1046 3163.1253 5929 3164.0207 5929 3165.1253 L 5929 3221.1253 C 5929 3222.23 5928.1046 3223.1253 5927 3223.1253 L 5784.5 3223.1253 C 5783.3954 3223.1253 5782.5 3222.23 5782.5 3221.1253 L 5782.5 3165.1253 C 5782.5 3164.0207 5783.3954 3163.1253 5784.5 3163.1253 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5787.5 3183.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="18.018" y="15">Final model fit</tspan> + </text> + </g> + <g id="Graphic_552"> + <path d="M 5784.5 3045.2505 L 5927 3045.2505 C 5928.1046 3045.2505 5929 3046.146 5929 3047.2505 L 5929 3103.2505 C 5929 3104.355 5928.1046 3105.2505 5927 3105.2505 L 5784.5 3105.2505 C 5783.3954 3105.2505 5782.5 3104.355 5782.5 3103.2505 L 5782.5 3047.2505 C 5782.5 3046.146 5783.3954 3045.2505 5784.5 3045.2505 Z" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 5784.5 3045.2505 L 5927 3045.2505 C 5928.1046 3045.2505 5929 3046.146 5929 3047.2505 L 5929 3103.2505 C 5929 3104.355 5928.1046 3105.2505 5927 3105.2505 L 5784.5 3105.2505 C 5783.3954 3105.2505 5782.5 3104.355 5782.5 3103.2505 L 5782.5 3047.2505 C 5782.5 3046.146 5783.3954 3045.2505 5784.5 3045.2505 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5787.5 3066.0265)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.762" y="15">Select a Model</tspan> + </text> + </g> + <g id="Graphic_551"> + <path d="M 5784.5 3281 L 5927 3281 C 5928.1046 3281 5929 3281.8954 5929 3283 L 5929 3339 C 5929 3340.1046 5928.1046 3341 5927 3341 L 5784.5 3341 C 5783.3954 3341 5782.5 3340.1046 5782.5 3339 L 5782.5 3283 C 5782.5 3281.8954 5783.3954 3281 5784.5 3281 Z" fill="#7a81ff" fill-opacity=".18181868"/> + <path d="M 5784.5 3281 L 5927 3281 C 5928.1046 3281 5929 3281.8954 5929 3283 L 5929 3339 C 5929 3340.1046 5928.1046 3341 5927 3341 L 5784.5 3341 C 5783.3954 3341 5782.5 3340.1046 5782.5 3339 L 5782.5 3283 C 5782.5 3281.8954 5783.3954 3281 5784.5 3281 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5787.5 3292.552)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="24.242" y="15">Verify model </tspan> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="22.762" y="33.448">performance</tspan> + </text> + </g> + <g id="Line_550"> + <line x1="5855.75" y1="3105.2505" x2="5855.75" y2="3153.2253" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_549"> + <line x1="5855.75" y1="3223.1253" x2="5855.75" y2="3271.1" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_548"> + <path d="M 5782.5 2752.2444 L 5782.5 2704.2444 C 5782.5 2700.9324 5815.316 2698.2444 5855.75 2698.2444 C 5896.184 2698.2444 5929 2700.9324 5929 2704.2444 L 5929 2752.2444 C 5929 2755.5564 5896.184 2758.2444 5855.75 2758.2444 C 5815.316 2758.2444 5782.5 2755.5564 5782.5 2752.2444" fill="#ffeabb"/> + <path d="M 5782.5 2752.2444 L 5782.5 2704.2444 C 5782.5 2700.9324 5815.316 2698.2444 5855.75 2698.2444 C 5896.184 2698.2444 5929 2700.9324 5929 2704.2444 L 5929 2752.2444 C 5929 2755.5564 5896.184 2758.2444 5855.75 2758.2444 C 5815.316 2758.2444 5782.5 2755.5564 5782.5 2752.2444 M 5782.5 2704.2444 C 5782.5 2707.5564 5815.316 2710.2444 5855.75 2710.2444 C 5896.184 2710.2444 5929 2707.5564 5929 2704.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5787.5 2722.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan> + </text> + </g> + <g id="Graphic_547"> + <path d="M 5486.5 2752.2444 L 5486.5 2704.2444 C 5486.5 2700.9324 5519.316 2698.2444 5559.75 2698.2444 C 5600.184 2698.2444 5633 2700.9324 5633 2704.2444 L 5633 2752.2444 C 5633 2755.5564 5600.184 2758.2444 5559.75 2758.2444 C 5519.316 2758.2444 5486.5 2755.5564 5486.5 2752.2444" fill="#7a81ff" fill-opacity=".18181868"/> + <path d="M 5486.5 2752.2444 L 5486.5 2704.2444 C 5486.5 2700.9324 5519.316 2698.2444 5559.75 2698.2444 C 5600.184 2698.2444 5633 2700.9324 5633 2704.2444 L 5633 2752.2444 C 5633 2755.5564 5600.184 2758.2444 5559.75 2758.2444 C 5519.316 2758.2444 5486.5 2755.5564 5486.5 2752.2444 M 5486.5 2704.2444 C 5486.5 2707.5564 5519.316 2710.2444 5559.75 2710.2444 C 5600.184 2710.2444 5633 2707.5564 5633 2704.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5491.5 2722.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Line_540"> + <path d="M 5546.892 2758.152 C 5521.439 2822.9413 5472.4634 2980.7188 5537.3696 3108.504 C 5588.8655 3209.8875 5697.176 3263.116 5773.105 3289.1004" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_538"> + <path d="M 5643.5 2632.1253 L 5643.5 2584.1253 C 5643.5 2580.8133 5676.316 2578.1253 5716.75 2578.1253 C 5757.184 2578.1253 5790 2580.8133 5790 2584.1253 L 5790 2632.1253 C 5790 2635.4373 5757.184 2638.1253 5716.75 2638.1253 C 5676.316 2638.1253 5643.5 2635.4373 5643.5 2632.1253 M 5643.5 2584.1253 C 5643.5 2587.4373 5676.316 2590.1253 5716.75 2590.1253 C 5757.184 2590.1253 5790 2587.4373 5790 2584.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5648.5 2601.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_537"> + <line x1="5678.681" y1="2637.2515" x2="5605.682" y2="2693.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_536"> + <line x1="5750.677" y1="2637.4436" x2="5814.333" y2="2692.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_529" filter="url(#Shadow)"> + <path d="M 5679 2901.1253 L 5679 2853.1253 C 5679 2849.8133 5711.816 2847.1253 5752.25 2847.1253 C 5792.684 2847.1253 5825.5 2849.8133 5825.5 2853.1253 L 5825.5 2901.1253 C 5825.5 2904.4373 5792.684 2907.1253 5752.25 2907.1253 C 5711.816 2907.1253 5679 2904.4373 5679 2901.1253" fill="#fffbf1"/> + <path d="M 5679 2901.1253 L 5679 2853.1253 C 5679 2849.8133 5711.816 2847.1253 5752.25 2847.1253 C 5792.684 2847.1253 5825.5 2849.8133 5825.5 2853.1253 L 5825.5 2901.1253 C 5825.5 2904.4373 5792.684 2907.1253 5752.25 2907.1253 C 5711.816 2907.1253 5679 2904.4373 5679 2901.1253 M 5679 2853.1253 C 5679 2856.4373 5711.816 2859.1253 5752.25 2859.1253 C 5792.684 2859.1253 5825.5 2856.4373 5825.5 2853.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5684 2870.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_528"> + <line x1="5835.063" y1="2758.0015" x2="5778.588" y2="2839.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_527"> + <path d="M 5902.688 2756.8497 C 5962.856 2797.215 6059.5 2876.169 6059.5 2966.8747 C 6059.5 3050.2663 5977.8135 3118.7617 5917.885 3157.7917" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_557"> + <path d="M 5891.5 2895.5253 L 5891.5 2858.7253 C 5891.5 2856.186 5913.34 2854.1253 5940.25 2854.1253 C 5967.16 2854.1253 5989 2856.186 5989 2858.7253 L 5989 2895.5253 C 5989 2898.0645 5967.16 2900.1253 5940.25 2900.1253 C 5913.34 2900.1253 5891.5 2898.0645 5891.5 2895.5253" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 5891.5 2895.5253 L 5891.5 2858.7253 C 5891.5 2856.186 5913.34 2854.1253 5940.25 2854.1253 C 5967.16 2854.1253 5989 2856.186 5989 2858.7253 L 5989 2895.5253 C 5989 2898.0645 5967.16 2900.1253 5940.25 2900.1253 C 5913.34 2900.1253 5891.5 2898.0645 5891.5 2895.5253 M 5891.5 2858.7253 C 5891.5 2861.2645 5913.34 2863.3253 5940.25 2863.3253 C 5967.16 2863.3253 5989 2861.2645 5989 2858.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5896.5 2872.0773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan> + </text> + </g> + <g id="Line_558"> + <line x1="5872.6854" y1="2758.083" x2="5922.4026" y2="2845.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_559"> + <line x1="5930.48" y1="2900.0327" x2="5872.429" y2="3036.144" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + <g id="Graphic_692"> + <ellipse cx="5688.75" cy="2970.5978" rx="42.2500675113558" ry="19.2857451023942" fill="#fffbf1"/> + <ellipse cx="5688.75" cy="2970.5978" rx="42.2500675113558" ry="19.2857451023942" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5659.95 2962.0978)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan> + </text> + </g> + <g id="Line_691"> + <line x1="5732.027" y1="2906.8934" x2="5706.8295" y2="2943.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_690"> + <ellipse cx="5819.75" cy="2970.1635" rx="42.2500675113555" ry="18.8514574734569" fill="#fffbf1"/> + <ellipse cx="5819.75" cy="2970.1635" rx="42.2500675113555" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(5790.95 2961.9675)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan> + </text> + </g> + <g id="Line_689"> + <line x1="5767.667" y1="2910.5" x2="5797.9014" y2="2945.135" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_688"> + <line x1="5827.1276" y1="2988.727" x2="5845.564" y2="3035.116" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_693"> + <line x1="5716.042" y1="2985.321" x2="5817.954" y2="3040.2996" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-logistic.svg b/SD/5.1_model/images/whole-game-logistic.svg new file mode 100644 index 0000000..6e0b82d --- /dev/null +++ b/SD/5.1_model/images/whole-game-logistic.svg @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="2488 2509 744.5 847.1253" width="744.5" height="847.1253"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="2413.55" y="2424.2875"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_759"> + <g id="Graphic_758"/> + <g id="Graphic_757"> + <path d="M 2874.5 2723.2444 L 2874.5 2675.2444 C 2874.5 2671.9324 2907.316 2669.2444 2947.75 2669.2444 C 2988.184 2669.2444 3021 2671.9324 3021 2675.2444 L 3021 2723.2444 C 3021 2726.5564 2988.184 2729.2444 2947.75 2729.2444 C 2907.316 2729.2444 2874.5 2726.5564 2874.5 2723.2444" fill="#ffeabb"/> + <path d="M 2874.5 2723.2444 L 2874.5 2675.2444 C 2874.5 2671.9324 2907.316 2669.2444 2947.75 2669.2444 C 2988.184 2669.2444 3021 2671.9324 3021 2675.2444 L 3021 2723.2444 C 3021 2726.5564 2988.184 2729.2444 2947.75 2729.2444 C 2907.316 2729.2444 2874.5 2726.5564 2874.5 2723.2444 M 2874.5 2675.2444 C 2874.5 2678.5564 2907.316 2681.2444 2947.75 2681.2444 C 2988.184 2681.2444 3021 2678.5564 3021 2675.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2879.5 2693.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan> + </text> + </g> + <g id="Graphic_756"> + <path d="M 2578.5 2723.2444 L 2578.5 2675.2444 C 2578.5 2671.9324 2611.316 2669.2444 2651.75 2669.2444 C 2692.184 2669.2444 2725 2671.9324 2725 2675.2444 L 2725 2723.2444 C 2725 2726.5564 2692.184 2729.2444 2651.75 2729.2444 C 2611.316 2729.2444 2578.5 2726.5564 2578.5 2723.2444" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 2578.5 2723.2444 L 2578.5 2675.2444 C 2578.5 2671.9324 2611.316 2669.2444 2651.75 2669.2444 C 2692.184 2669.2444 2725 2671.9324 2725 2675.2444 L 2725 2723.2444 C 2725 2726.5564 2692.184 2729.2444 2651.75 2729.2444 C 2611.316 2729.2444 2578.5 2726.5564 2578.5 2723.2444 M 2578.5 2675.2444 C 2578.5 2678.5564 2611.316 2681.2444 2651.75 2681.2444 C 2692.184 2681.2444 2725 2678.5564 2725 2675.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2583.5 2693.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Graphic_755"> + <path d="M 2735.5 2603.1253 L 2735.5 2555.1253 C 2735.5 2551.8133 2768.316 2549.1253 2808.75 2549.1253 C 2849.184 2549.1253 2882 2551.8133 2882 2555.1253 L 2882 2603.1253 C 2882 2606.4373 2849.184 2609.1253 2808.75 2609.1253 C 2768.316 2609.1253 2735.5 2606.4373 2735.5 2603.1253 M 2735.5 2555.1253 C 2735.5 2558.4373 2768.316 2561.1253 2808.75 2561.1253 C 2849.184 2561.1253 2882 2558.4373 2882 2555.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2740.5 2572.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_754"> + <line x1="2770.681" y1="2608.2515" x2="2697.6817" y2="2664.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_753"> + <line x1="2842.6767" y1="2608.4436" x2="2906.3327" y2="2663.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_752" filter="url(#Shadow)"> + <path d="M 2771 2872.1253 L 2771 2824.1253 C 2771 2820.8133 2803.816 2818.1253 2844.25 2818.1253 C 2884.684 2818.1253 2917.5 2820.8133 2917.5 2824.1253 L 2917.5 2872.1253 C 2917.5 2875.4373 2884.684 2878.1253 2844.25 2878.1253 C 2803.816 2878.1253 2771 2875.4373 2771 2872.1253" fill="#fffbf1"/> + <path d="M 2771 2872.1253 L 2771 2824.1253 C 2771 2820.8133 2803.816 2818.1253 2844.25 2818.1253 C 2884.684 2818.1253 2917.5 2820.8133 2917.5 2824.1253 L 2917.5 2872.1253 C 2917.5 2875.4373 2884.684 2878.1253 2844.25 2878.1253 C 2803.816 2878.1253 2771 2875.4373 2771 2872.1253 M 2771 2824.1253 C 2771 2827.4373 2803.816 2830.1253 2844.25 2830.1253 C 2884.684 2830.1253 2917.5 2827.4373 2917.5 2824.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2776 2841.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_751"> + <line x1="2927.0633" y1="2729.0015" x2="2870.5877" y2="2810.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_750"> + <path d="M 2983.5 2866.5253 L 2983.5 2829.7253 C 2983.5 2827.186 3005.34 2825.1253 3032.25 2825.1253 C 3059.16 2825.1253 3081 2827.186 3081 2829.7253 L 3081 2866.5253 C 3081 2869.0645 3059.16 2871.1253 3032.25 2871.1253 C 3005.34 2871.1253 2983.5 2869.0645 2983.5 2866.5253" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 2983.5 2866.5253 L 2983.5 2829.7253 C 2983.5 2827.186 3005.34 2825.1253 3032.25 2825.1253 C 3059.16 2825.1253 3081 2827.186 3081 2829.7253 L 3081 2866.5253 C 3081 2869.0645 3059.16 2871.1253 3032.25 2871.1253 C 3005.34 2871.1253 2983.5 2869.0645 2983.5 2866.5253 M 2983.5 2829.7253 C 2983.5 2832.2645 3005.34 2834.3253 3032.25 2834.3253 C 3059.16 2834.3253 3081 2832.2645 3081 2829.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2988.5 2843.0773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan> + </text> + </g> + <g id="Line_749"> + <line x1="2964.6854" y1="2729.083" x2="3014.4026" y2="2816.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_748"> + <ellipse cx="2780.75" cy="2941.5978" rx="42.2500675113554" ry="19.2857451023942" fill="#fffbf1"/> + <ellipse cx="2780.75" cy="2941.5978" rx="42.2500675113554" ry="19.2857451023942" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2751.95 2933.0978)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan> + </text> + </g> + <g id="Line_747"> + <line x1="2824.0272" y1="2877.8934" x2="2798.8295" y2="2914.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-model-1.jpg b/SD/5.1_model/images/whole-game-model-1.jpg new file mode 100644 index 0000000..a43441c Binary files /dev/null and b/SD/5.1_model/images/whole-game-model-1.jpg differ diff --git a/SD/5.1_model/images/whole-game-model-n.jpg b/SD/5.1_model/images/whole-game-model-n.jpg new file mode 100644 index 0000000..53fccc2 Binary files /dev/null and b/SD/5.1_model/images/whole-game-model-n.jpg differ diff --git a/SD/5.1_model/images/whole-game-resamples.jpg b/SD/5.1_model/images/whole-game-resamples.jpg new file mode 100644 index 0000000..bd0ac85 Binary files /dev/null and b/SD/5.1_model/images/whole-game-resamples.jpg differ diff --git a/SD/5.1_model/images/whole-game-select.jpg b/SD/5.1_model/images/whole-game-select.jpg new file mode 100644 index 0000000..15080da Binary files /dev/null and b/SD/5.1_model/images/whole-game-select.jpg differ diff --git a/SD/5.1_model/images/whole-game-select.svg b/SD/5.1_model/images/whole-game-select.svg new file mode 100644 index 0000000..1c99074 --- /dev/null +++ b/SD/5.1_model/images/whole-game-select.svg @@ -0,0 +1,114 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="4478 2555 744.5 847.1253" width="744.5" height="847.1253"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="4403.55" y="2470.2875"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_722"> + <g id="Group_703"> + <g id="Graphic_721"/> + <g id="Graphic_719"> + <path d="M 4866.5 3062.2505 L 5009 3062.2505 C 5010.1046 3062.2505 5011 3063.146 5011 3064.2505 L 5011 3120.2505 C 5011 3121.355 5010.1046 3122.2505 5009 3122.2505 L 4866.5 3122.2505 C 4865.3954 3122.2505 4864.5 3121.355 4864.5 3120.2505 L 4864.5 3064.2505 C 4864.5 3063.146 4865.3954 3062.2505 4866.5 3062.2505 Z" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 4866.5 3062.2505 L 5009 3062.2505 C 5010.1046 3062.2505 5011 3063.146 5011 3064.2505 L 5011 3120.2505 C 5011 3121.355 5010.1046 3122.2505 5009 3122.2505 L 4866.5 3122.2505 C 4865.3954 3122.2505 4864.5 3121.355 4864.5 3120.2505 L 4864.5 3064.2505 C 4864.5 3063.146 4865.3954 3062.2505 4866.5 3062.2505 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4869.5 3083.0265)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="14.762" y="15">Select a Model</tspan> + </text> + </g> + <g id="Graphic_715"> + <path d="M 4864.5 2769.2444 L 4864.5 2721.2444 C 4864.5 2717.9324 4897.316 2715.2444 4937.75 2715.2444 C 4978.184 2715.2444 5011 2717.9324 5011 2721.2444 L 5011 2769.2444 C 5011 2772.5564 4978.184 2775.2444 4937.75 2775.2444 C 4897.316 2775.2444 4864.5 2772.5564 4864.5 2769.2444" fill="#ffeabb"/> + <path d="M 4864.5 2769.2444 L 4864.5 2721.2444 C 4864.5 2717.9324 4897.316 2715.2444 4937.75 2715.2444 C 4978.184 2715.2444 5011 2717.9324 5011 2721.2444 L 5011 2769.2444 C 5011 2772.5564 4978.184 2775.2444 4937.75 2775.2444 C 4897.316 2775.2444 4864.5 2772.5564 4864.5 2769.2444 M 4864.5 2721.2444 C 4864.5 2724.5564 4897.316 2727.2444 4937.75 2727.2444 C 4978.184 2727.2444 5011 2724.5564 5011 2721.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4869.5 2739.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan> + </text> + </g> + <g id="Graphic_714"> + <path d="M 4568.5 2769.2444 L 4568.5 2721.2444 C 4568.5 2717.9324 4601.316 2715.2444 4641.75 2715.2444 C 4682.184 2715.2444 4715 2717.9324 4715 2721.2444 L 4715 2769.2444 C 4715 2772.5564 4682.184 2775.2444 4641.75 2775.2444 C 4601.316 2775.2444 4568.5 2772.5564 4568.5 2769.2444" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 4568.5 2769.2444 L 4568.5 2721.2444 C 4568.5 2717.9324 4601.316 2715.2444 4641.75 2715.2444 C 4682.184 2715.2444 4715 2717.9324 4715 2721.2444 L 4715 2769.2444 C 4715 2772.5564 4682.184 2775.2444 4641.75 2775.2444 C 4601.316 2775.2444 4568.5 2772.5564 4568.5 2769.2444 M 4568.5 2721.2444 C 4568.5 2724.5564 4601.316 2727.2444 4641.75 2727.2444 C 4682.184 2727.2444 4715 2724.5564 4715 2721.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4573.5 2739.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Graphic_712"> + <path d="M 4725.5 2649.1253 L 4725.5 2601.1253 C 4725.5 2597.8133 4758.316 2595.1253 4798.75 2595.1253 C 4839.184 2595.1253 4872 2597.8133 4872 2601.1253 L 4872 2649.1253 C 4872 2652.4373 4839.184 2655.1253 4798.75 2655.1253 C 4758.316 2655.1253 4725.5 2652.4373 4725.5 2649.1253 M 4725.5 2601.1253 C 4725.5 2604.4373 4758.316 2607.1253 4798.75 2607.1253 C 4839.184 2607.1253 4872 2604.4373 4872 2601.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4730.5 2618.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_711"> + <line x1="4760.681" y1="2654.2515" x2="4687.6817" y2="2710.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_710"> + <line x1="4832.6767" y1="2654.4436" x2="4896.333" y2="2709.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_709" filter="url(#Shadow)"> + <path d="M 4761 2918.1253 L 4761 2870.1253 C 4761 2866.8133 4793.816 2864.1253 4834.25 2864.1253 C 4874.684 2864.1253 4907.5 2866.8133 4907.5 2870.1253 L 4907.5 2918.1253 C 4907.5 2921.4373 4874.684 2924.1253 4834.25 2924.1253 C 4793.816 2924.1253 4761 2921.4373 4761 2918.1253" fill="#fffbf1"/> + <path d="M 4761 2918.1253 L 4761 2870.1253 C 4761 2866.8133 4793.816 2864.1253 4834.25 2864.1253 C 4874.684 2864.1253 4907.5 2866.8133 4907.5 2870.1253 L 4907.5 2918.1253 C 4907.5 2921.4373 4874.684 2924.1253 4834.25 2924.1253 C 4793.816 2924.1253 4761 2921.4373 4761 2918.1253 M 4761 2870.1253 C 4761 2873.4373 4793.816 2876.1253 4834.25 2876.1253 C 4874.684 2876.1253 4907.5 2873.4373 4907.5 2870.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4766 2887.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_708"> + <line x1="4917.063" y1="2775.0015" x2="4860.588" y2="2856.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_706"> + <path d="M 4973.5 2912.5253 L 4973.5 2875.7253 C 4973.5 2873.186 4995.34 2871.1253 5022.25 2871.1253 C 5049.16 2871.1253 5071 2873.186 5071 2875.7253 L 5071 2912.5253 C 5071 2915.0645 5049.16 2917.1253 5022.25 2917.1253 C 4995.34 2917.1253 4973.5 2915.0645 4973.5 2912.5253" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 4973.5 2912.5253 L 4973.5 2875.7253 C 4973.5 2873.186 4995.34 2871.1253 5022.25 2871.1253 C 5049.16 2871.1253 5071 2873.186 5071 2875.7253 L 5071 2912.5253 C 5071 2915.0645 5049.16 2917.1253 5022.25 2917.1253 C 4995.34 2917.1253 4973.5 2915.0645 4973.5 2912.5253 M 4973.5 2875.7253 C 4973.5 2878.2645 4995.34 2880.3253 5022.25 2880.3253 C 5049.16 2880.3253 5071 2878.2645 5071 2875.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4978.5 2889.0773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan> + </text> + </g> + <g id="Line_705"> + <line x1="4954.6854" y1="2775.083" x2="5004.4026" y2="2862.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_704"> + <line x1="5012.48" y1="2917.0327" x2="4954.429" y2="3053.144" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + <g id="Graphic_702"> + <ellipse cx="4770.75" cy="2987.5978" rx="42.2500675113553" ry="19.2857451023941" fill="#fffbf1"/> + <ellipse cx="4770.75" cy="2987.5978" rx="42.2500675113553" ry="19.2857451023941" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4741.95 2979.0978)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="4.299999" y="13">Logistic</tspan> + </text> + </g> + <g id="Line_701"> + <line x1="4814.027" y1="2923.8934" x2="4788.8295" y2="2960.9846" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_700"> + <ellipse cx="4901.75" cy="2987.1635" rx="42.2500675113555" ry="18.8514574734569" fill="#fffbf1"/> + <ellipse cx="4901.75" cy="2987.1635" rx="42.2500675113555" ry="18.8514574734569" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(4872.95 2978.9675)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="14" fill="black" x="2.6129992" y="13">Xgboost</tspan> + </text> + </g> + <g id="Line_699"> + <line x1="4849.6667" y1="2927.5" x2="4879.9014" y2="2962.135" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_698"> + <line x1="4909.1276" y1="3005.727" x2="4927.564" y2="3052.116" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_697"> + <line x1="4798.042" y1="3002.321" x2="4899.9537" y2="3057.2996" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-split-short.svg b/SD/5.1_model/images/whole-game-split-short.svg new file mode 100644 index 0000000..cb09c11 --- /dev/null +++ b/SD/5.1_model/images/whole-game-split-short.svg @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" version="1.1" viewBox="553 2515 744.5 416" width="744.5" height="416"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="478.55" y="2473.4"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-dasharray="none" stroke-opacity="1" fill="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_795"> + <g id="Graphic_794"/> + <g id="Graphic_793"> + <path d="M 939.5 2729.2444 L 939.5 2681.2444 C 939.5 2677.9324 972.316 2675.2444 1012.75 2675.2444 C 1053.184 2675.2444 1086 2677.9324 1086 2681.2444 L 1086 2729.2444 C 1086 2732.5564 1053.184 2735.2444 1012.75 2735.2444 C 972.316 2735.2444 939.5 2732.5564 939.5 2729.2444" fill="#ffeabb"/> + <path d="M 939.5 2729.2444 L 939.5 2681.2444 C 939.5 2677.9324 972.316 2675.2444 1012.75 2675.2444 C 1053.184 2675.2444 1086 2677.9324 1086 2681.2444 L 1086 2729.2444 C 1086 2732.5564 1053.184 2735.2444 1012.75 2735.2444 C 972.316 2735.2444 939.5 2732.5564 939.5 2729.2444 M 939.5 2681.2444 C 939.5 2684.5564 972.316 2687.2444 1012.75 2687.2444 C 1053.184 2687.2444 1086 2684.5564 1086 2681.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(944.5 2699.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan> + </text> + </g> + <g id="Graphic_792"> + <path d="M 643.5 2729.2444 L 643.5 2681.2444 C 643.5 2677.9324 676.316 2675.2444 716.75 2675.2444 C 757.184 2675.2444 790 2677.9324 790 2681.2444 L 790 2729.2444 C 790 2732.5564 757.184 2735.2444 716.75 2735.2444 C 676.316 2735.2444 643.5 2732.5564 643.5 2729.2444" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 643.5 2729.2444 L 643.5 2681.2444 C 643.5 2677.9324 676.316 2675.2444 716.75 2675.2444 C 757.184 2675.2444 790 2677.9324 790 2681.2444 L 790 2729.2444 C 790 2732.5564 757.184 2735.2444 716.75 2735.2444 C 676.316 2735.2444 643.5 2732.5564 643.5 2729.2444 M 643.5 2681.2444 C 643.5 2684.5564 676.316 2687.2444 716.75 2687.2444 C 757.184 2687.2444 790 2684.5564 790 2681.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(648.5 2699.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Graphic_791"> + <path d="M 800.5 2609.1253 L 800.5 2561.1253 C 800.5 2557.8133 833.316 2555.1253 873.75 2555.1253 C 914.184 2555.1253 947 2557.8133 947 2561.1253 L 947 2609.1253 C 947 2612.4373 914.184 2615.1253 873.75 2615.1253 C 833.316 2615.1253 800.5 2612.4373 800.5 2609.1253 M 800.5 2561.1253 C 800.5 2564.4373 833.316 2567.1253 873.75 2567.1253 C 914.184 2567.1253 947 2564.4373 947 2561.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(805.5 2578.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_790"> + <line x1="835.681" y1="2614.2515" x2="762.6817" y2="2670.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_789"> + <line x1="907.6767" y1="2614.4436" x2="971.3327" y2="2669.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_788" filter="url(#Shadow)"> + <path d="M 836 2878.1253 L 836 2830.1253 C 836 2826.8133 868.816 2824.1253 909.25 2824.1253 C 949.684 2824.1253 982.5 2826.8133 982.5 2830.1253 L 982.5 2878.1253 C 982.5 2881.4373 949.684 2884.1253 909.25 2884.1253 C 868.816 2884.1253 836 2881.4373 836 2878.1253" fill="#fffbf1"/> + <path d="M 836 2878.1253 L 836 2830.1253 C 836 2826.8133 868.816 2824.1253 909.25 2824.1253 C 949.684 2824.1253 982.5 2826.8133 982.5 2830.1253 L 982.5 2878.1253 C 982.5 2881.4373 949.684 2884.1253 909.25 2884.1253 C 868.816 2884.1253 836 2881.4373 836 2878.1253 M 836 2830.1253 C 836 2833.4373 868.816 2836.1253 909.25 2836.1253 C 949.684 2836.1253 982.5 2833.4373 982.5 2830.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(841 2847.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_787"> + <line x1="992.0633" y1="2735.0015" x2="935.5877" y2="2816.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_786"> + <path d="M 1048.5 2872.5253 L 1048.5 2835.7253 C 1048.5 2833.186 1070.34 2831.1253 1097.25 2831.1253 C 1124.16 2831.1253 1146 2833.186 1146 2835.7253 L 1146 2872.5253 C 1146 2875.0645 1124.16 2877.1253 1097.25 2877.1253 C 1070.34 2877.1253 1048.5 2875.0645 1048.5 2872.5253" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 1048.5 2872.5253 L 1048.5 2835.7253 C 1048.5 2833.186 1070.34 2831.1253 1097.25 2831.1253 C 1124.16 2831.1253 1146 2833.186 1146 2835.7253 L 1146 2872.5253 C 1146 2875.0645 1124.16 2877.1253 1097.25 2877.1253 C 1070.34 2877.1253 1048.5 2875.0645 1048.5 2872.5253 M 1048.5 2835.7253 C 1048.5 2838.2645 1070.34 2840.3253 1097.25 2840.3253 C 1124.16 2840.3253 1146 2838.2645 1146 2835.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1053.5 2849.0773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan> + </text> + </g> + <g id="Line_785"> + <line x1="1029.6854" y1="2735.083" x2="1079.4026" y2="2822.68" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-split.jpg b/SD/5.1_model/images/whole-game-split.jpg new file mode 100644 index 0000000..1206adf Binary files /dev/null and b/SD/5.1_model/images/whole-game-split.jpg differ diff --git a/SD/5.1_model/images/whole-game-split.svg b/SD/5.1_model/images/whole-game-split.svg new file mode 100644 index 0000000..159763c --- /dev/null +++ b/SD/5.1_model/images/whole-game-split.svg @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns:xl="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="1527 2417 744.5 847.1253" width="744.5" height="847.1253"> + <defs> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + <filter id="Shadow" filterUnits="userSpaceOnUse" x="1452.55" y="2332.2875"> + <feGaussianBlur in="SourceAlpha" result="blur" stdDeviation="1.308"/> + <feOffset in="blur" result="offset" dx="0" dy="2"/> + <feFlood flood-color="black" flood-opacity=".5" result="flood"/> + <feComposite in="flood" in2="offset" operator="in" result="color"/> + <feMerge> + <feMergeNode in="color"/> + <feMergeNode in="SourceGraphic"/> + </feMerge> + </filter> + <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker_2" stroke-linejoin="miter" stroke-miterlimit="10" viewBox="-1 -4 10 8" markerWidth="10" markerHeight="8" color="black"> + <g> + <path d="M 8 0 L 0 -3 L 0 3 Z" fill="currentColor" stroke="currentColor" stroke-width="1"/> + </g> + </marker> + </defs> + <g id="Canvas_1" fill-opacity="1" stroke="none" stroke-opacity="1" fill="none" stroke-dasharray="none"> + <title>Canvas 1</title> + <g id="Canvas_1_Layer_1"> + <title>Layer 1</title> + <g id="Group_684"> + <g id="Graphic_683"/> + <g id="Graphic_682"> + <path d="M 1913.5 2631.2444 L 1913.5 2583.2444 C 1913.5 2579.9324 1946.316 2577.2444 1986.75 2577.2444 C 2027.184 2577.2444 2060 2579.9324 2060 2583.2444 L 2060 2631.2444 C 2060 2634.5564 2027.184 2637.2444 1986.75 2637.2444 C 1946.316 2637.2444 1913.5 2634.5564 1913.5 2631.2444" fill="#ffeabb"/> + <path d="M 1913.5 2631.2444 L 1913.5 2583.2444 C 1913.5 2579.9324 1946.316 2577.2444 1986.75 2577.2444 C 2027.184 2577.2444 2060 2579.9324 2060 2583.2444 L 2060 2631.2444 C 2060 2634.5564 2027.184 2637.2444 1986.75 2637.2444 C 1946.316 2637.2444 1913.5 2634.5564 1913.5 2631.2444 M 1913.5 2583.2444 C 1913.5 2586.5564 1946.316 2589.2444 1986.75 2589.2444 C 2027.184 2589.2444 2060 2586.5564 2060 2583.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1918.5 2601.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="27.802" y="15">Not Testing</tspan> + </text> + </g> + <g id="Graphic_681"> + <path d="M 1617.5 2631.2444 L 1617.5 2583.2444 C 1617.5 2579.9324 1650.316 2577.2444 1690.75 2577.2444 C 1731.184 2577.2444 1764 2579.9324 1764 2583.2444 L 1764 2631.2444 C 1764 2634.5564 1731.184 2637.2444 1690.75 2637.2444 C 1650.316 2637.2444 1617.5 2634.5564 1617.5 2631.2444" fill="#7a81ff" fill-opacity=".181819"/> + <path d="M 1617.5 2631.2444 L 1617.5 2583.2444 C 1617.5 2579.9324 1650.316 2577.2444 1690.75 2577.2444 C 1731.184 2577.2444 1764 2579.9324 1764 2583.2444 L 1764 2631.2444 C 1764 2634.5564 1731.184 2637.2444 1690.75 2637.2444 C 1650.316 2637.2444 1617.5 2634.5564 1617.5 2631.2444 M 1617.5 2583.2444 C 1617.5 2586.5564 1650.316 2589.2444 1690.75 2589.2444 C 1731.184 2589.2444 1764 2586.5564 1764 2583.2444" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1622.5 2601.0204)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="42.914" y="15">Testing</tspan> + </text> + </g> + <g id="Graphic_680"> + <path d="M 1774.5 2511.1253 L 1774.5 2463.1253 C 1774.5 2459.8133 1807.316 2457.1253 1847.75 2457.1253 C 1888.184 2457.1253 1921 2459.8133 1921 2463.1253 L 1921 2511.1253 C 1921 2514.4373 1888.184 2517.1253 1847.75 2517.1253 C 1807.316 2517.1253 1774.5 2514.4373 1774.5 2511.1253 M 1774.5 2463.1253 C 1774.5 2466.4373 1807.316 2469.1253 1847.75 2469.1253 C 1888.184 2469.1253 1921 2466.4373 1921 2463.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1779.5 2480.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.546" y="15">All Data</tspan> + </text> + </g> + <g id="Line_679"> + <line x1="1809.681" y1="2516.2515" x2="1736.6817" y2="2572.1025" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Line_678"> + <line x1="1881.6767" y1="2516.4436" x2="1945.3327" y2="2571.453" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_675" filter="url(#Shadow)"> + <path d="M 1810 2780.1253 L 1810 2732.1253 C 1810 2728.8133 1842.816 2726.1253 1883.25 2726.1253 C 1923.684 2726.1253 1956.5 2728.8133 1956.5 2732.1253 L 1956.5 2780.1253 C 1956.5 2783.4373 1923.684 2786.1253 1883.25 2786.1253 C 1842.816 2786.1253 1810 2783.4373 1810 2780.1253" fill="#fffbf1"/> + <path d="M 1810 2780.1253 L 1810 2732.1253 C 1810 2728.8133 1842.816 2726.1253 1883.25 2726.1253 C 1923.684 2726.1253 1956.5 2728.8133 1956.5 2732.1253 L 1956.5 2780.1253 C 1956.5 2783.4373 1923.684 2786.1253 1883.25 2786.1253 C 1842.816 2786.1253 1810 2783.4373 1810 2780.1253 M 1810 2732.1253 C 1810 2735.4373 1842.816 2738.1253 1883.25 2738.1253 C 1923.684 2738.1253 1956.5 2735.4373 1956.5 2732.1253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(1815 2749.9013)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="40.394" y="15">Training</tspan> + </text> + </g> + <g id="Line_674"> + <line x1="1966.0633" y1="2637.0015" x2="1909.5877" y2="2718.2395" marker-end="url(#FilledArrow_Marker)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + <g id="Graphic_673"> + <path d="M 2022.5 2774.5253 L 2022.5 2737.7253 C 2022.5 2735.186 2044.34 2733.1253 2071.25 2733.1253 C 2098.16 2733.1253 2120 2735.186 2120 2737.7253 L 2120 2774.5253 C 2120 2777.0645 2098.16 2779.1253 2071.25 2779.1253 C 2044.34 2779.1253 2022.5 2777.0645 2022.5 2774.5253" fill="#7a81ff" fill-opacity=".08"/> + <path d="M 2022.5 2774.5253 L 2022.5 2737.7253 C 2022.5 2735.186 2044.34 2733.1253 2071.25 2733.1253 C 2098.16 2733.1253 2120 2735.186 2120 2737.7253 L 2120 2774.5253 C 2120 2777.0645 2098.16 2779.1253 2071.25 2779.1253 C 2044.34 2779.1253 2022.5 2777.0645 2022.5 2774.5253 M 2022.5 2737.7253 C 2022.5 2740.2645 2044.34 2742.3253 2071.25 2742.3253 C 2098.16 2742.3253 2120 2740.2645 2120 2737.7253" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + <text transform="translate(2027.5 2751.0773)" fill="black"> + <tspan font-family="Helvetica Neue" font-size="16" fill="black" x="9.078" y="15">Validation</tspan> + </text> + </g> + <g id="Line_672"> + <line x1="2003.6854" y1="2637.083" x2="2053.4026" y2="2724.68" marker-end="url(#FilledArrow_Marker_2)" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/SD/5.1_model/images/whole-game-transparent-model-1.jpg b/SD/5.1_model/images/whole-game-transparent-model-1.jpg new file mode 100644 index 0000000..767c3d9 Binary files /dev/null and b/SD/5.1_model/images/whole-game-transparent-model-1.jpg differ diff --git a/SD/5.1_model/images/whole-game-transparent-resamples.jpg b/SD/5.1_model/images/whole-game-transparent-resamples.jpg new file mode 100644 index 0000000..83009b0 Binary files /dev/null and b/SD/5.1_model/images/whole-game-transparent-resamples.jpg differ diff --git a/SD/5.1_model/images/whole-game-transparent-select.jpg b/SD/5.1_model/images/whole-game-transparent-select.jpg new file mode 100644 index 0000000..9376279 Binary files /dev/null and b/SD/5.1_model/images/whole-game-transparent-select.jpg differ diff --git a/SD/5.1_model/images/whole-game-transparent-split.jpg b/SD/5.1_model/images/whole-game-transparent-split.jpg new file mode 100644 index 0000000..be2baf3 Binary files /dev/null and b/SD/5.1_model/images/whole-game-transparent-split.jpg differ diff --git a/SD/5.1_model/index.qmd b/SD/5.1_model/index.qmd new file mode 100644 index 0000000..5901e17 --- /dev/null +++ b/SD/5.1_model/index.qmd @@ -0,0 +1,1475 @@ +--- +title: "模型构建" +subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution +author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 +date: today +lang: zh +format: + revealjs: + theme: dark + slide-number: true + chalkboard: + buttons: true + preview-links: auto + lang: zh + toc: true + toc-depth: 1 + toc-title: 大纲 + logo: ./_extensions/inst/img/ucaslogo.png + css: ./_extensions/inst/css/revealjs.css + pointer: + key: "p" + color: "#32cd32" + pointerSize: 18 +revealjs-plugins: + - pointer +filters: + - d2 +knitr: + opts_chunk: + dev: "svg" + retina: 3 +execute: + freeze: auto + cache: true + echo: true + fig-width: 5 + fig-height: 6 +--- + +# tidymodels主要步骤 + +```{r} +#| echo: false +hexes <- function(..., size = 64) { + x <- c(...) + x <- sort(unique(x), decreasing = TRUE) + right <- (seq_along(x) - 1) * size + res <- glue::glue( + '{.absolute top=-20 right=<right> width="<size>" height="<size * 1.16>"}', + .open = "<", + .close = ">" + ) + paste0(res, collapse = " ") +} + +knitr::opts_chunk$set( + digits = 3, + comment = "#>", + dev = 'svglite' +) + +# devtools::install_github("gadenbuie/countdown") +# library(countdown) +library(ggplot2) +theme_set(theme_bw()) +options(cli.width = 70, ggplot2.discrete.fill = c("#7e96d5", "#de6c4e")) + +train_color <- "#1a162d" +test_color <- "#cd4173" +data_color <- "#767381" +assess_color <- "#84cae1" +splits_pal <- c(data_color, train_color, test_color) +``` + + + + + +## 何为tidymodels? {background-image="images/tm-org.png" background-size="80%"} + +```{r load-tm} +#| message: true +#| echo: true +#| warning: true +library(tidymodels) +``` + +## 整体思路 + +```{r diagram-split, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-split.jpg") +``` + +## 整体思路 + +```{r diagram-model-1, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-model-1.jpg") +``` + +:::notes +Stress that we are **not** fitting a model on the entire training set other than for illustrative purposes in deck 2. +::: + +## 整体思路 + +```{r diagram-model-n, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-model-n.jpg") +``` + +## 整体思路 + +```{r, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-resamples.jpg") +``` + +## 整体思路 + +```{r, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-select.jpg") +``` + +## 整体思路 + +```{r diagram-final-fit, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-final-fit.jpg") +``` + +## 整体思路 + +```{r diagram-final-performance, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-final-performance.jpg") +``` + +## 相关包的安装 + +```{r load-pkgs} +#| eval: false + +# Install the packages for the workshop +pkgs <- + c( + "bonsai", + "doParallel", + "embed", + "finetune", + "lightgbm", + "lme4", + "plumber", + "probably", + "ranger", + "rpart", + "rpart.plot", + "rules", + "splines2", + "stacks", + "text2vec", + "textrecipes", + "tidymodels", + "vetiver", + "remotes" + ) + +install.packages(pkgs) +``` + +. . . + +<br></br> + + + + +## Data on Chicago taxi trips + +```{r taxi-print} +library(tidymodels) +taxi +``` + +## 数据分割与使用 + +对于机器学习,我们通常将数据分成训练集和测试集: + +. . . + +- 训练集用于估计模型参数。 +- 测试集用于独立评估模型性能。 + +. . . + +在训练过程中不要使用测试集。 + + +. . . + +```{r test-train-split} +#| echo: false +#| fig.width: 12 +#| fig.height: 3 +#| +set.seed(123) +library(forcats) +require(tidymodels) +require(tidyverse) +one_split <- taxi |> + dplyr::slice(1:30) |> + rsample::initial_split() |> + generics::tidy() |> + tibble::add_row(Row = 1:30, Data = "Original") |> + dplyr::mutate( + Data = case_when( + Data == "Analysis" ~ "Training", + Data == "Assessment" ~ "Testing", + TRUE ~ Data + ) + ) |> + dplyr::mutate( + Data = factor(Data, levels = c("Original", "Training", "Testing")) + ) +all_split <- + ggplot(one_split, aes(x = Row, y = fct_rev(Data), fill = Data)) + + geom_tile(color = "white", linewidth = 1) + + scale_fill_manual(values = splits_pal, guide = "none") + + theme_minimal() + + theme( + axis.text.y = element_text(size = rel(2)), + axis.text.x = element_blank(), + legend.position = "top", + panel.grid = element_blank() + ) + + coord_equal(ratio = 1) + + labs(x = NULL, y = NULL) +all_split +``` + +## The initial split + +```{r taxi-split} +set.seed(123) +taxi_split <- initial_split(taxi) +taxi_split +``` + +## Accessing the data + +```{r taxi-train-test} +taxi_train <- training(taxi_split) +taxi_test <- testing(taxi_split) +``` + +## The training set + +```{r taxi-train} +taxi_train +``` + +## 练习 + +```{r taxi-split-prop} +set.seed(123) +taxi_split <- initial_split(taxi, prop = 0.8) +taxi_train <- training(taxi_split) +taxi_test <- testing(taxi_split) + +nrow(taxi_train) +nrow(taxi_test) +``` + +## Stratification + +Use `strata = tip` + +```{r taxi-split-prop-strata} +set.seed(123) +taxi_split <- initial_split(taxi, prop = 0.8, strata = tip) +taxi_split +``` + +## Stratification + +Stratification often helps, with very little downside + +```{r taxi-tip-pct-by-split, echo = FALSE} +bind_rows( + taxi_train %>% mutate(split = "train"), + taxi_test %>% mutate(split = "test") +) %>% + ggplot(aes(x = split, fill = tip)) + + geom_bar(position = "fill") +``` + +## 模型类型 + + +模型多种多样 + +- `lm` for linear model + +- `glm` for generalized linear model (e.g. logistic regression) + +- `glmnet` for regularized regression + +- `keras` for regression using TensorFlow + +- `stan` for Bayesian regression + +- `spark` for large data sets + + +## 指定模型 + +```{r} +#| echo: false +library(tidymodels) + +set.seed(123) + +taxi_split <- initial_split(taxi, prop = 0.8, strata = tip) +taxi_train <- training(taxi_split) +taxi_test <- testing(taxi_split) +``` + +```{r logistic-reg} +logistic_reg() +``` + + +:::notes +Models have default engines +::: + + + +## To specify a model + +```{r logistic-reg-glmnet} +logistic_reg() %>% + set_engine("glmnet") +``` + +. . . + + +```{r logistic-reg-stan} +logistic_reg() %>% + set_engine("stan") +``` + + +::: columns +::: {.column width="40%"} +- Choose a model +- Specify an engine +- Set the [mode]{.underline} +::: + +::: {.column width="60%"} + +::: +::: + + +## To specify a model + +```{r decision-tree} +decision_tree() +``` + +:::notes +Some models have a default mode +::: + +## To specify a model + +```{r decision-tree-classification} +decision_tree() %>% + set_mode("classification") +``` + +. . . + +<br></br> + +::: r-fit-text +All available models are listed at <https://www.tidymodels.org/find/parsnip/> +::: + + +## Workflows + +```{r good-workflow} +#| echo: false +#| out-width: '70%' +#| fig-align: 'center' +knitr::include_graphics("images/good_workflow.png") +``` + + +## 为什么要使用 `workflow()`? + + +- 与基本的 R 工具相比,工作流能更好地处理新的因子水平 + +. . . + +- 除了公式之外,还可以使用其他的预处理器(更多关于高级 tidymodels 中的特征工程!) + +. . . + +- 在使用多个模型时,它们可以帮助组织工作 + +. . . + +- [最重要的是]{.underline},工作流涵盖了整个建模过程:`fit()` 和 `predict()` 不仅适用于实际的模型拟合,还适用于预处理步骤 + +::: notes +工作流比基本的 R 处理水平更好的两种方式: + +- 强制要求在预测时不允许出现新的水平(这是一个可选的检查,可以关闭) + +- 恢复在拟合时存在但在预测时缺失的水平(例如,“新”数据中没有该水平的实例) +::: + + +## A model workflow + +```{r tree-spec} +tree_spec <- + decision_tree(cost_complexity = 0.002) %>% + set_mode("classification") + +tree_spec %>% + fit(tip ~ ., data = taxi_train) +``` + +## A model workflow + +```{r tree-wflow} +tree_spec <- + decision_tree(cost_complexity = 0.002) %>% + set_mode("classification") + +workflow() %>% + add_formula(tip ~ .) %>% + add_model(tree_spec) %>% + fit(data = taxi_train) +``` + +## A model workflow + +```{r tree-wflow-fit} +tree_spec <- + decision_tree(cost_complexity = 0.002) %>% + set_mode("classification") + +workflow(tip ~ ., tree_spec) %>% + fit(data = taxi_train) +``` + +## 预测 + +How do you use your new `tree_fit` model? + +```{r tree-wflow-fit-2} +tree_spec <- + decision_tree(cost_complexity = 0.002) %>% + set_mode("classification") + +tree_fit <- + workflow(tip ~ ., tree_spec) %>% + fit(data = taxi_train) +``` + +## 练习 + +*Run:* + +`predict(tree_fit, new_data = taxi_test)` + + + +. . . + + +*Run:* + +`augment(tree_fit, new_data = taxi_test)` + +*What do you get?* + + +## tidymodels 的预测 + +- 预测结果始终在一个 **tibble** 内 +- 列名和类型可读性强 +- `new_data` 中的行数和输出中的行数**相同** + +## 理解模型 + +如何 **理解**`tree_fit` 模型? + +```{r plot-tree-fit-4} +#| echo: false +#| fig-align: center +#| fig-width: 8 +#| fig-height: 5 +#| out-width: 100% +library(rpart.plot) +tree_fit %>% + extract_fit_engine() %>% + rpart.plot(roundint = FALSE) +``` + +## Evaluating models: 预测值 + +```{r} +#| echo: false +library(tidymodels) + +set.seed(123) +taxi_split <- initial_split(taxi, prop = 0.8, strata = tip) +taxi_train <- training(taxi_split) +taxi_test <- testing(taxi_split) + +tree_spec <- decision_tree(cost_complexity = 0.0001, mode = "classification") +taxi_wflow <- workflow(tip ~ ., tree_spec) +taxi_fit <- fit(taxi_wflow, taxi_train) +``` + +```{r taxi-fit-augment} +augment(taxi_fit, new_data = taxi_train) %>% + relocate(tip, .pred_class, .pred_yes, .pred_no) +``` + +## Confusion matrix + + + +## Confusion matrix + +```{r conf-mat} +augment(taxi_fit, new_data = taxi_train) %>% + conf_mat(truth = tip, estimate = .pred_class) +``` + +## Confusion matrix + +```{r conf-mat-plot} +augment(taxi_fit, new_data = taxi_train) %>% + conf_mat(truth = tip, estimate = .pred_class) %>% + autoplot(type = "heatmap") +``` + +## Metrics for model performance + +::: columns +::: {.column width="60%"} +```{r acc} +augment(taxi_fit, new_data = taxi_train) %>% + accuracy(truth = tip, estimate = .pred_class) +``` +::: + +::: {.column width="40%"} + +::: +::: + +## 二分类模型评估 + +模型的敏感性(Sensitivity)和特异性(Specificity)是评估二分类模型性能的重要指标: + +- **敏感性**(Sensitivity),也称为真阳性率,衡量了模型正确识别正类别样本的能力。公式为真阳性数除以真阳性数加上假阴性数: + +$$ +\text{Sensitivity} = \frac{\text{True Positives}}{\text{True Positives} + \text{False Negatives}} +$$ + + +- **特异性**(Specificity),也称为真阴性率,衡量了模型正确识别负类别样本的能力。公式为真阴性数除以真阴性数加上假阳性数: + +$$ +\text{Specificity} = \frac{\text{True Negatives}}{\text{True Negatives} + \text{False Positives}} +$$ + +在评估模型时,我们希望敏感性和特异性都很高。高敏感性表示模型能够捕获真正的正类别样本,高特异性表示模型能够准确排除负类别样本。 + + +## Metrics for model performance + +::: columns +::: {.column width="60%"} +```{r sens} +augment(taxi_fit, new_data = taxi_train) %>% + sensitivity(truth = tip, estimate = .pred_class) +``` +::: + +::: {.column width="40%"} + +::: +::: + + +## Metrics for model performance + +::: columns +::: {.column width="60%"} +```{r sens-2} +#| code-line-numbers: "3-6" +augment(taxi_fit, new_data = taxi_train) %>% + sensitivity(truth = tip, estimate = .pred_class) +``` + +<br> + +```{r spec} +augment(taxi_fit, new_data = taxi_train) %>% + specificity(truth = tip, estimate = .pred_class) +``` +::: + +::: {.column width="40%"} + +::: +::: + +## Metrics for model performance + +We can use `metric_set()` to combine multiple calculations into one + +```{r taxi-metrics} +taxi_metrics <- metric_set(accuracy, specificity, sensitivity) + +augment(taxi_fit, new_data = taxi_train) %>% + taxi_metrics(truth = tip, estimate = .pred_class) +``` + +## Metrics for model performance + +```{r taxi-metrics-grouped} +taxi_metrics <- metric_set(accuracy, specificity, sensitivity) + +augment(taxi_fit, new_data = taxi_train) %>% + group_by(local) %>% + taxi_metrics(truth = tip, estimate = .pred_class) +``` + + +## Varying the threshold + +```{r} +#| label: thresholds +#| echo: false + +augment(taxi_fit, new_data = taxi_train) %>% + roc_curve(truth = tip, .pred_yes) %>% + filter(is.finite(.threshold)) %>% + pivot_longer( + c(specificity, sensitivity), + names_to = "statistic", + values_to = "value" + ) %>% + rename(`event threshold` = .threshold) %>% + ggplot(aes( + x = `event threshold`, + y = value, + col = statistic, + group = statistic + )) + + geom_line() + + scale_color_brewer(palette = "Dark2") + + labs(y = NULL) + + coord_equal() + + theme(legend.position = "top") +``` + +## ROC 曲线 + +- ROC(Receiver Operating Characteristic)曲线用于评估二分类模型的性能,特别是在不同的阈值下比较模型的敏感性和特异性。 +- ROC曲线的横轴是假阳性率(False Positive Rate,FPR),纵轴是真阳性率(True Positive Rate,TPR)。在ROC曲线上,每个点对应于一个特定的阈值。通过改变阈值,我们可以观察到模型在不同条件下的表现。 +- ROC曲线越接近左上角(0,1)点,说明模型的性能越好,因为这表示在较低的假阳性率下,模型能够获得较高的真阳性率。ROC曲线下面积(Area Under the ROC Curve,AUC)也是评估模型性能的一种指标,AUC值越大表示模型性能越好。 + + + +## ROC curve plot + +```{r roc-curve} +#| fig-width: 6 +#| fig-height: 6 +#| output-location: "column" + +augment(taxi_fit, new_data = taxi_train) %>% + roc_curve(truth = tip, .pred_yes) %>% + autoplot() +``` + + +## 过度拟合 + + + +## 过度拟合 + + + + +## Cross-validation {background-color="white" background-image="https://www.tmwr.org/premade/resampling.svg" background-size="80%"} + +## Cross-validation + + + +## Cross-validation + + + +## Cross-validation + +```{r vfold-cv} +vfold_cv(taxi_train) # v = 10 is default +``` + +## Cross-validation + +What is in this? + +```{r taxi-splits} +taxi_folds <- vfold_cv(taxi_train) +taxi_folds$splits[1:3] +``` + +::: notes +Talk about a list column, storing non-atomic types in dataframe +::: + +## Cross-validation + +```{r vfold-cv-v} +vfold_cv(taxi_train, v = 5) +``` + +## Cross-validation + +```{r vfold-cv-strata} +vfold_cv(taxi_train, strata = tip) +``` + +. . . + +Stratification often helps, with very little downside + +## Cross-validation + +We'll use this setup: + +```{r taxi-folds} +set.seed(123) +taxi_folds <- vfold_cv(taxi_train, v = 10, strata = tip) +taxi_folds +``` + +. . . + +Set the seed when creating resamples + + +## Fit our model to the resamples + +```{r fit-resamples} +taxi_res <- fit_resamples(taxi_wflow, taxi_folds) +taxi_res +``` + +## Evaluating model performance + +```{r collect-metrics} +taxi_res %>% + collect_metrics() +``` + +::: notes +collect_metrics() 是一套 collect_*() 函数之一,可用于处理调参结果的列。调参结果中以 . 为前缀的大多数列都有对应的 collect_*() 函数,可以进行常见摘要选项的汇总。 +::: + +. . . + +We can reliably measure performance using only the **training** data 🎉 + +## Comparing metrics + +How do the metrics from resampling compare to the metrics from training and testing? + +```{r calc-roc-auc} +#| echo: false +taxi_training_roc_auc <- + taxi_fit %>% + augment(taxi_train) %>% + roc_auc(tip, .pred_yes) %>% + pull(.estimate) %>% + round(digits = 2) + +taxi_testing_roc_auc <- + taxi_fit %>% + augment(taxi_test) %>% + roc_auc(tip, .pred_yes) %>% + pull(.estimate) %>% + round(digits = 2) +``` + +::: columns +::: {.column width="50%"} +```{r collect-metrics-2} +taxi_res %>% + collect_metrics() %>% + select(.metric, mean, n) +``` +::: + +::: {.column width="50%"} +The ROC AUC previously was + +- `r taxi_training_roc_auc` for the training set +- `r taxi_testing_roc_auc` for test set +::: +::: + +. . . + +Remember that: + +⚠️ the training set gives you overly optimistic metrics + +⚠️ the test set is precious + +## Evaluating model performance + +```{r save-predictions} +# Save the assessment set results +ctrl_taxi <- control_resamples(save_pred = TRUE) +taxi_res <- fit_resamples(taxi_wflow, taxi_folds, control = ctrl_taxi) + +taxi_res +``` + +## Evaluating model performance + +```{r collect-predictions} +# Save the assessment set results +taxi_preds <- collect_predictions(taxi_res) +taxi_preds +``` + +## Evaluating model performance + +```{r taxi-metrics-by-id} +taxi_preds %>% + group_by(id) %>% + taxi_metrics(truth = tip, estimate = .pred_class) +``` + +## Where are the fitted models? + +```{r taxi-res} +taxi_res +``` + + +## Bootstrapping + + + +## Bootstrapping + +```{r bootstraps} +set.seed(3214) +bootstraps(taxi_train) +``` + + +## Monte Carlo Cross-Validation + +```{r mc-cv} +set.seed(322) +mc_cv(taxi_train, times = 10) +``` + +## Validation set + +```{r validation-split} +set.seed(853) +taxi_val_split <- initial_validation_split(taxi, strata = tip) +validation_set(taxi_val_split) +``` + + +## Create a random forest model + +```{r rf-spec} +rf_spec <- rand_forest(trees = 1000, mode = "classification") +rf_spec +``` + +## Create a random forest model + +```{r rf-wflow} +rf_wflow <- workflow(tip ~ ., rf_spec) +rf_wflow +``` + +## Evaluating model performance + +```{r collect-metrics-rf} +ctrl_taxi <- control_resamples(save_pred = TRUE) + +# Random forest uses random numbers so set the seed first + +set.seed(2) +rf_res <- fit_resamples(rf_wflow, taxi_folds, control = ctrl_taxi) +collect_metrics(rf_res) +``` + +## The whole game - status update + +```{r diagram-select, echo = FALSE} +#| fig-align: "center" + +knitr::include_graphics("images/whole-game-transparent-select.jpg") +``` + +## The final fit + +```{r final-fit} +# taxi_split has train + test info +final_fit <- last_fit(rf_wflow, taxi_split) + +final_fit +``` + +## 何为`final_fit`? + +```{r collect-metrics-final-fit} +collect_metrics(final_fit) +``` + +. . . + +These are metrics computed with the **test** set + +## 何为`final_fit`? + +```{r collect-predictions-final-fit} +collect_predictions(final_fit) +``` + +## 何为`final_fit`? + +```{r extract-workflow} +extract_workflow(final_fit) +``` + +. . . + +Use this for **prediction** on new data, like for deploying + + + + +## Tuning models - Specifying tuning parameters + + +```{r} +#| label: tag-for-tuning +#| code-line-numbers: "1|" + +rf_spec <- rand_forest(min_n = tune()) %>% + set_mode("classification") + +rf_wflow <- workflow(tip ~ ., rf_spec) +rf_wflow +``` + +## Try out multiple values + +`tune_grid()` works similar to `fit_resamples()` but covers multiple parameter values: + +```{r} +#| label: rf-tune_grid +#| code-line-numbers: "2|3-4|5|" + +set.seed(22) +rf_res <- tune_grid( + rf_wflow, + taxi_folds, + grid = 5 +) +``` + +## Compare results + +Inspecting results and selecting the best-performing hyperparameter(s): + +```{r} +#| label: rf-results + +show_best(rf_res) + +best_parameter <- select_best(rf_res) +best_parameter +``` + +`collect_metrics()` and `autoplot()` are also available. + +## The final fit + +```{r} +#| label: rf-finalize + +rf_wflow <- finalize_workflow(rf_wflow, best_parameter) + +final_fit <- last_fit(rf_wflow, taxi_split) + +collect_metrics(final_fit) +``` + +# 实践部分 + + +## 数据 + +```{r} +require(tidyverse) +sitedf <- readr::read_csv( + "https://www.epa.gov/sites/default/files/2014-01/nla2007_sampledlakeinformation_20091113.csv" +) |> + select( + SITE_ID, + lon = LON_DD, + lat = LAT_DD, + name = LAKENAME, + area = LAKEAREA, + zmax = DEPTHMAX + ) |> + group_by(SITE_ID) |> + summarize( + lon = mean(lon, na.rm = TRUE), + lat = mean(lat, na.rm = TRUE), + name = unique(name), + area = mean(area, na.rm = TRUE), + zmax = mean(zmax, na.rm = TRUE) + ) + + +visitdf <- readr::read_csv( + "https://www.epa.gov/sites/default/files/2013-09/nla2007_profile_20091008.csv" +) |> + select(SITE_ID, date = DATE_PROFILE, year = YEAR, visit = VISIT_NO) |> + distinct() + + +waterchemdf <- readr::read_csv( + "https://www.epa.gov/sites/default/files/2013-09/nla2007_profile_20091008.csv" +) |> + select( + SITE_ID, + date = DATE_PROFILE, + depth = DEPTH, + temp = TEMP_FIELD, + do = DO_FIELD, + ph = PH_FIELD, + cond = COND_FIELD, + ) + +sddf <- readr::read_csv( + "https://www.epa.gov/sites/default/files/2014-10/nla2007_secchi_20091008.csv" +) |> + select( + SITE_ID, + date = DATE_SECCHI, + sd = SECMEAN, + clear_to_bottom = CLEAR_TO_BOTTOM + ) + +trophicdf <- readr::read_csv( + "https://www.epa.gov/sites/default/files/2014-10/nla2007_trophic_conditionestimate_20091123.csv" +) |> + select(SITE_ID, visit = VISIT_NO, tp = PTL, tn = NTL, chla = CHLA) |> + left_join(visitdf, by = c("SITE_ID", "visit")) |> + select(-year, -visit) |> + group_by(SITE_ID, date) |> + summarize( + tp = mean(tp, na.rm = TRUE), + tn = mean(tn, na.rm = TRUE), + chla = mean(chla, na.rm = TRUE) + ) + + +phytodf <- readr::read_csv( + "https://www.epa.gov/sites/default/files/2014-10/nla2007_phytoplankton_softalgaecount_20091023.csv" +) |> + select( + SITE_ID, + date = DATEPHYT, + depth = SAMPLE_DEPTH, + phyta = DIVISION, + genus = GENUS, + species = SPECIES, + tax = TAXANAME, + abund = ABUND + ) |> + mutate(phyta = gsub(" .*$", "", phyta)) |> + filter(!is.na(genus)) |> + group_by(SITE_ID, date, depth, phyta, genus) |> + summarize(abund = sum(abund, na.rm = TRUE)) |> + nest(phytodf = -c(SITE_ID, date)) + +envdf <- waterchemdf |> + filter(depth < 2) |> + select(-depth) |> + group_by(SITE_ID, date) |> + summarise_all(~ mean(., na.rm = TRUE)) |> + ungroup() |> + left_join(sddf, by = c("SITE_ID", "date")) |> + left_join(trophicdf, by = c("SITE_ID", "date")) + +nla <- envdf |> + left_join(phytodf) |> + left_join(sitedf, by = "SITE_ID") |> + filter(!purrr::map_lgl(phytodf, is.null)) |> + mutate( + cyanophyta = purrr::map( + phytodf, + ~ .x |> + dplyr::filter(phyta == "Cyanophyta") |> + summarize(cyanophyta = sum(abund, na.rm = TRUE)) + ) + ) |> + unnest(cyanophyta) |> + select(-phyta) |> + mutate(clear_to_bottom = ifelse(is.na(clear_to_bottom), TRUE, FALSE)) + +# library(rmdify) +# library(dwfun) +# dwfun::init() +``` + + +## 数据 + +```{r} +skimr::skim(nla) +``` + + + +## 简单模型 + +```{r} +nla |> + filter(tp > 1) |> + ggplot(aes(tn, tp)) + + geom_point() + + geom_smooth(method = "lm") + + scale_x_log10( + breaks = scales::trans_breaks("log10", function(x) 10^x), + labels = scales::trans_format("log10", scales::math_format(10^.x)) + ) + + scale_y_log10( + breaks = scales::trans_breaks("log10", function(x) 10^x), + labels = scales::trans_format("log10", scales::math_format(10^.x)) + ) + +m1 <- lm(log10(tp) ~ log10(tn), data = nla) + +summary(m1) +``` + +## 复杂指标 + +```{r} +nla |> + filter(tp > 1) |> + ggplot(aes(tp, cyanophyta)) + + geom_point() + + geom_smooth(method = "lm") + + scale_x_log10( + breaks = scales::trans_breaks("log10", function(x) 10^x), + labels = scales::trans_format("log10", scales::math_format(10^.x)) + ) + + scale_y_log10( + breaks = scales::trans_breaks("log10", function(x) 10^x), + labels = scales::trans_format("log10", scales::math_format(10^.x)) + ) + +m2 <- lm(log10(cyanophyta) ~ log10(tp), data = nla) + +summary(m2) +``` + + + + +## tidymodels - Data split + +```{r} +(nla_split <- rsample::initial_split(nla, prop = 0.7, strata = zmax)) +(nla_train <- training(nla_split)) +(nla_test <- testing(nla_split)) +``` + +## tidymodels - recipe + +```{r} +nla_formula <- as.formula( + "cyanophyta ~ temp + do + ph + cond + sd + tp + tn + chla + clear_to_bottom" +) +# nla_formula <- as.formula("cyanophyta ~ temp + do + ph + cond + sd + tp + tn") +nla_recipe <- recipes::recipe(nla_formula, data = nla_train) |> + recipes::step_string2factor(all_nominal()) |> + recipes::step_nzv(all_nominal()) |> + recipes::step_log(chla, cyanophyta, base = 10) |> + recipes::step_normalize(all_numeric_predictors()) |> + prep() +nla_recipe +``` + +## tidymodels - cross validation + +```{r} +nla_cv <- recipes::bake( + nla_recipe, + new_data = training(nla_split) +) |> + rsample::vfold_cv(v = 10) +nla_cv +``` + +## tidymodels - Model specification + +```{r} +xgboost_model <- parsnip::boost_tree( + mode = "regression", + trees = 1000, + min_n = tune(), + tree_depth = tune(), + learn_rate = tune(), + loss_reduction = tune() +) |> + set_engine("xgboost", objective = "reg:squarederror") +xgboost_model +``` + + +## tidymodels - Grid specification + +```{r} +# grid specification +xgboost_params <- dials::parameters( + min_n(), + tree_depth(), + learn_rate(), + loss_reduction() +) +xgboost_params +``` + +## tidymodels - Grid specification + +```{r} +xgboost_grid <- dials::grid_max_entropy( + xgboost_params, + size = 60 +) +knitr::kable(head(xgboost_grid)) +``` + +## tidymodels - Workflow + +```{r} +xgboost_wf <- workflows::workflow() |> + add_model(xgboost_model) |> + add_formula(nla_formula) +xgboost_wf +``` + + +## tidymodels - Tune + +```{r} +#| cache: true +# hyperparameter tuning +if (FALSE) { + xgboost_tuned <- tune::tune_grid( + object = xgboost_wf, + resamples = nla_cv, + grid = xgboost_grid, + metrics = yardstick::metric_set(rmse, rsq, mae), + control = tune::control_grid(verbose = TRUE) + ) + saveRDS(xgboost_tuned, "./xgboost_tuned.RDS") +} +xgboost_tuned <- readRDS("./xgboost_tuned.RDS") +``` + +## tidymodels - Best model + +```{r} +xgboost_tuned |> + tune::show_best(metric = "rmse") |> + knitr::kable() +``` + + +## tidymodels - Best model + +```{r} +xgboost_tuned |> + collect_metrics() +``` + + +## tidymodels - Best model + +```{r} +#| fig-width: 9 +#| fig-height: 5 +#| out-width: "100%" +xgboost_tuned |> + autoplot() +``` + + +## tidymodels - Best model + + +```{r} +xgboost_best_params <- xgboost_tuned |> + tune::select_best(metric = "rmse") + +knitr::kable(xgboost_best_params) +``` + + +## tidymodels - Final model + +```{r} +xgboost_model_final <- xgboost_model |> + finalize_model(xgboost_best_params) +xgboost_model_final +``` + + +## tidymodels - Train evaluation + + +```{r} +(train_processed <- bake(nla_recipe, new_data = nla_train)) +``` + +## tidymodels - Train data + +```{r} +train_prediction <- xgboost_model_final |> + # fit the model on all the training data + fit( + formula = nla_formula, + data = train_processed + ) |> + # predict the sale prices for the training data + predict(new_data = train_processed) |> + bind_cols( + nla_train |> + mutate(.obs = log10(cyanophyta)) + ) +xgboost_score_train <- + train_prediction |> + yardstick::metrics(.obs, .pred) |> + mutate(.estimate = format(round(.estimate, 2), big.mark = ",")) +knitr::kable(xgboost_score_train) +``` + +## tidymodels - train evaluation + +```{r} +#| fig-width: 5 +#| fig-height: 3 +#| out-width: "80%" +train_prediction |> + ggplot(aes(.pred, .obs)) + + geom_point() + + geom_smooth(method = "lm") +``` + + +## tidymodels - test data + + +```{r} +test_processed <- bake(nla_recipe, new_data = nla_test) + +test_prediction <- xgboost_model_final |> + # fit the model on all the training data + fit( + formula = nla_formula, + data = train_processed + ) |> + # use the training model fit to predict the test data + predict(new_data = test_processed) |> + bind_cols( + nla_test |> + mutate(.obs = log10(cyanophyta)) + ) + +# measure the accuracy of our model using `yardstick` +xgboost_score <- test_prediction |> + yardstick::metrics(.obs, .pred) |> + mutate(.estimate = format(round(.estimate, 2), big.mark = ",")) + +knitr::kable(xgboost_score) +``` + + +## tidymodels - evaluation + +```{r} +#| fig-width: 5 +#| fig-height: 3 +#| out-width: "80%" +cyanophyta_prediction_residual <- test_prediction |> + arrange(.pred) %>% + mutate(residual_pct = (.obs - .pred) / .pred) |> + select(.pred, residual_pct) + +cyanophyta_prediction_residual |> + ggplot(aes(x = .pred, y = residual_pct)) + + geom_point() + + xlab("Predicted Cyanophyta") + + ylab("Residual (%)") +``` + + + + +## tidymodels - test evaluation + +```{r} +#| fig-width: 5 +#| fig-height: 3 +#| out-width: "80%" +test_prediction |> + ggplot(aes(.pred, .obs)) + + geom_point() + + geom_smooth(method = "lm", colour = "black") +``` + + + +## 欢迎讨论!{.center} + + +`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drc.drwater.net/course/public/RWEP/PUB/SD/")` diff --git a/SD/5.1_model/mpg-plot.png b/SD/5.1_model/mpg-plot.png new file mode 100644 index 0000000..de3439b Binary files /dev/null and b/SD/5.1_model/mpg-plot.png differ diff --git a/SD/5.1_model/xgboost_tuned.RDS b/SD/5.1_model/xgboost_tuned.RDS new file mode 100644 index 0000000..5d0fe6a Binary files /dev/null and b/SD/5.1_model/xgboost_tuned.RDS differ diff --git a/SD/5.2_大数据分析工具/_extensions b/SD/5.2_大数据分析工具/_extensions new file mode 120000 index 0000000..74119e3 --- /dev/null +++ b/SD/5.2_大数据分析工具/_extensions @@ -0,0 +1 @@ +../../_extensions \ No newline at end of file diff --git a/SD/5.2_大数据分析工具/index.qmd b/SD/5.2_大数据分析工具/index.qmd new file mode 100644 index 0000000..db77fce --- /dev/null +++ b/SD/5.2_大数据分析工具/index.qmd @@ -0,0 +1,166 @@ +--- +title: "大数据分析工具" +subtitle: 《区域水环境污染数据分析实践》<br>Data analysis practice of regional water environment pollution +author: 苏命、王为东<br>中国科学院大学资源与环境学院<br>中国科学院生态环境研究中心 +date: today +lang: zh +format: + revealjs: + theme: dark + slide-number: true + chalkboard: + buttons: true + preview-links: auto + lang: zh + toc: true + toc-depth: 1 + toc-title: 大纲 + logo: ./_extensions/inst/img/ucaslogo.png + css: ./_extensions/inst/css/revealjs.css + pointer: + key: "p" + color: "#32cd32" + pointerSize: 18 +revealjs-plugins: + - pointer +filters: + - d2 +--- + +```{r} +#| echo: false +knitr::opts_chunk$set(echo = TRUE) +source("../../coding/_common.R") +library(nycflights13) +library(tidyverse) + +``` + +## 匹配数字 + +### 匹配数字: + +- \d:匹配任意数字字符。 +- \d+:匹配一个或多个数字字符。 +- [0-9]: 匹配数字 + +### 匹配字母: + +- \w:匹配任意字母、数字或下划线字符。 +- \w+:匹配一个或多个字母、数字或下划线字符。 + +## 匹配数字 + +### 匹配空白字符: + +- \s:匹配任意空白字符,包括空格、制表符、换行符等。 +- \s+:匹配一个或多个空白字符。 + +### 匹配特定字符: + +- [abc]:匹配字符 a、b 或 c 中的任意一个。 +- [a-z]:匹配任意小写字母。 +- [A-Z]:匹配任意大写字母。 +- [0-9]:匹配任意数字。 + +## 匹配数字 + +### 匹配重复次数: + +- {n}:匹配前一个字符恰好 n 次。 +- {n,}:匹配前一个字符至少 n 次。 +- {n,m}:匹配前一个字符至少 n 次,但不超过 m 次。 + +### 匹配边界: + +- ^:匹配字符串的开头。 +- $:匹配字符串的结尾。 + +## 匹配数字 + +### 匹配特殊字符: + +- \:转义特殊字符,使其按字面意义匹配。 +- .:匹配任意单个字符。 +- |:表示“或”关系,匹配两个或多个表达式之一。 + +#### 匹配次数: + +- *:匹配前一个字符零次或多次。 +- +:匹配前一个字符一次或多次。 +- ?:匹配前一个字符零次或一次。 + +## 匹配数字 + +### 分组和捕获: + +- ():将一系列模式组合成一个单元,可与特殊字符一起使用。 + +### 预定义字符集: + +- \d:任意数字,相当于 [0-9]。 +- \w:任意字母、数字或下划线字符,相当于 [a-zA-Z0-9_]。 +- \s:任意空白字符,相当于 [ \t\n\r\f\v]。 + + + +## 实例 + +```{r} +library(babynames) +(x <- c("apple", "apppple", "abc123def")) +x[str_detect(x, "[0-9]")] +x[str_detect(x, "abc[0-9]+")] +x[str_detect(x, "pp")] +x[str_detect(x, "p{4}")] +x[str_detect(x, "p{4}")] +x[str_detect("apple", "ap*")] +x[str_detect("apple", "app*")] +x[str_detect("apple", "a..le")] +``` + +## 练习 + + +找出`babyname`中名字含有ar的行 + +```{r} +#| echo: false +babynames |> + filter(str_detect(name, "ar")) +``` + +## 练习 + + +找出`babyname`中名字含有ar或者以ry结尾的行。 + +```{r} +#| echo: false +babynames |> + filter(str_detect(name, "ar")) +``` + + + + +## GNU/Linux服务器 + +- `ssh`, `scp` +- `bash` + - grep + - sed + - awk + - find + - xargs +- `Editor` + - `Virtual Studio Code` + - `Vim` + - `Emacs` + + + +## 欢迎讨论!{.center} + + +`r rmdify::slideend(wechat = FALSE, type = "public", tel = FALSE, thislink = "https://drc.drwater.net/course/public/RWEP/PUB/SD/")` diff --git a/data/writexldemo.xlsx b/data/writexldemo.xlsx index edf636e..1dc6698 100644 Binary files a/data/writexldemo.xlsx and b/data/writexldemo.xlsx differ